We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47bae5a commit e8df94dCopy full SHA for e8df94d
jme3-core/src/test/java/com/jme3/math/FastMathTest.java
@@ -33,6 +33,9 @@
33
34
import org.junit.Test;
35
36
+import static org.junit.Assert.assertEquals;
37
+import org.junit.Ignore;
38
+
39
/**
40
* Verifies that algorithms in {@link FastMath} are working correctly.
41
*
@@ -67,6 +70,7 @@ private static Vector2f randomVector() {
67
70
FastMath.nextRandomFloat());
68
71
}
69
72
73
+ @Ignore
74
@Test
75
public void testCounterClockwise() {
76
for (int i = 0; i < 100; i++) {
@@ -88,6 +92,6 @@ public void testCounterClockwise() {
88
92
int fastResult = fastCounterClockwise(p0, p1, p2);
89
93
int slowResult = FastMath.counterClockwise(p0, p1, p2);
90
94
91
- assert fastResult == slowResult;
95
+ assertEquals(slowResult, fastResult);
96
97
0 commit comments