diff options
author | wisberg <wisberg> | 2005-05-21 23:48:47 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2005-05-21 23:48:47 +0000 |
commit | 427508b3671cf0d215a0f3da988818f9715c40dc (patch) | |
tree | 006e5002b16eaca7cbff282cb89d52ff0d3efc5c /testing | |
parent | 8f2cdb75d756085148644c95b062e16ebddf4942 (diff) | |
download | aspectj-427508b3671cf0d215a0f3da988818f9715c40dc.tar.gz aspectj-427508b3671cf0d215a0f3da988818f9715c40dc.zip |
skipping unrun tests
Diffstat (limited to 'testing')
-rw-r--r-- | testing/testsrc/org/aspectj/testing/harness/bridge/DirChangesTest.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testing/testsrc/org/aspectj/testing/harness/bridge/DirChangesTest.java b/testing/testsrc/org/aspectj/testing/harness/bridge/DirChangesTest.java index 71fd647e1..82859290b 100644 --- a/testing/testsrc/org/aspectj/testing/harness/bridge/DirChangesTest.java +++ b/testing/testsrc/org/aspectj/testing/harness/bridge/DirChangesTest.java @@ -49,24 +49,24 @@ public class DirChangesTest extends TestCase { /** * Uses testdata/dirChangesTestDir/same */ - public void testSameExpDir() { + public void skip_testSameExpDir() { doCheck("same"); } - + public void testNothingForAntJUnit() {} /** * Uses testdata/dirChangesTestDir/diff */ - public void testDiffExpDir() { + public void skip_testDiffExpDir() { doCheck("diff"); } - public void testWriteEmpty() { + public void skip_testWriteEmpty() { DirChanges.Spec spec = new DirChanges.Spec(); String expected = ""; checkWrite(spec, expected); } - public void testWriteExpDir() { + public void skip_testWriteExpDir() { DirChanges.Spec spec = new DirChanges.Spec(); spec.setExpDir("expected directory"); String expected = @@ -75,7 +75,7 @@ public class DirChangesTest extends TestCase { checkWrite(spec, expected); } - public void testWriteAdded() { + public void skip_testWriteAdded() { DirChanges.Spec spec = new DirChanges.Spec(); spec.setAdded("one,two,three"); String expected = |