-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeedback.txt
More file actions
87 lines (70 loc) · 4.08 KB
/
feedback.txt
File metadata and controls
87 lines (70 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Feedback
Group woodpecker: jw21, ruby7188
Commit hash: 2ddfa3cba94f14aca0b72cb8c56f6f6020894e4c
Final score: 54 / 60
## Style check
Score: 5 / 5
## ArrayDisjointSet
Score: 17 / 20
- PASS: (weight=1.0) testPathCompression
- FAIL: (weight=1.0) testInternalStructure
java.lang.AssertionError: expected:<-2> but was:<-1>
at org.junit.Assert.fail(Assert.java:88)
at org.junit.Assert.failNotEquals(Assert.java:834)
at org.junit.Assert.assertEquals(Assert.java:118)
at org.junit.Assert.assertEquals(Assert.java:144)
at misc.BaseTest.assertEquals(BaseTest.java:17)
at privatetests.PrivateTestArrayDisjointSet.testInternalStructure(PrivateTestArrayDisjointSet.java:47)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.lang.Thread.run(Thread.java:745)
- PASS: (weight=1.0) testDegenerateUnions
- PASS: (weight=1.0) testUnionSimple
- PASS: (weight=1.0) testUnionUnequalTrees
- PASS: (weight=1.0) testIllegalUnion
- PASS: (weight=1.0) testLargeForest
- PASS: (weight=1.0) testIllegalFindSet
- PASS: (weight=1.0) testMakeSetAndFindSetSimple
## Graph
Score: 20 / 20
- PASS: (weight=3.0) testDijkstraOnManyGraphs
- PASS: (weight=1.0) testGraphWithBadEdgeNotPermitted
- PASS: (weight=1.0) testFindingShortestPathSameStartAndEnd
- PASS: (weight=1.0) testFindingMst
- PASS: (weight=1.0) testFindingShortestPathComplex
- PASS: (weight=1.0) testFindingShortestPathSimple
- PASS: (weight=1.0) testFindingShortestPathDisconnectedComponents
- PASS: (weight=1.0) testSizeMethods
- PASS: (weight=1.0) testGraphWithNegativeEdgesNotPermitted
## KruskalMazeCarver
Score: 12 / 15
- PASS: (weight=1.0) testCarverReturnsViableMST
- PASS: (weight=1.5) testGeneratesSolvableMaze
- PASS: (weight=1.5) testResultIsRandom
- FAIL: (weight=1.0) testCarverDoesNotMutateMaze
java.lang.AssertionError
at org.junit.Assert.fail(Assert.java:86)
at org.junit.Assert.assertTrue(Assert.java:41)
at org.junit.Assert.assertTrue(Assert.java:52)
at privatetests.PrivateTestKruskalMazeCarver.testCarverDoesNotMutateMaze(PrivateTestKruskalMazeCarver.java:48)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.lang.Thread.run(Thread.java:745)