blob: 022377ecc4d7d71e735b70a0e9862439ac080cbe (
plain)
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
|
There was 1 failure:
1) testDirSet(org.apache.tools.ant.types.PathTest)
java.lang.AssertionError: expected:<1> but was:<0>
at org.junit.Assert.fail(Assert.java:89)
at org.junit.Assert.failNotEquals(Assert.java:835)
at org.junit.Assert.assertEquals(Assert.java:647)
at org.junit.Assert.assertEquals(Assert.java:633)
at org.apache.tools.ant.types.PathTest.testDirSet(PathTest.java:585)
FAILURES!!!
Tests run: 33, Failures: 1
--- a/src/tests/junit/org/apache/tools/ant/types/PathTest.java
+++ b/src/tests/junit/org/apache/tools/ant/types/PathTest.java
@@ -29,6 +29,7 @@ import org.apache.tools.ant.taskdefs.condition.Os;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
+import org.junit.Ignore;
import org.junit.rules.ExpectedException;
import static org.hamcrest.Matchers.endsWith;
@@ -570,7 +571,7 @@ public class PathTest {
assertEquals(project.resolveFile("build.xml").getAbsolutePath(), l[0]);
}
- @Test
+ @Test @Ignore
public void testDirSet() {
DirSet d = new DirSet();
d.setProject(project);
|