mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
2003-04-24 John Camelon
Fixed Java 1.3 compliance issue w/AutomatedTest.java Fixed False failure in HelloWorld.java.
This commit is contained in:
parent
304e26f30c
commit
d64dd56f51
3 changed files with 409 additions and 406 deletions
|
@ -1,4 +1,7 @@
|
||||||
<<<<<<< ChangeLog
|
2003-04-24 John Camelon
|
||||||
|
Fixed Java 1.3 compliance issue w/AutomatedTest.java
|
||||||
|
Fixed False failure in HelloWorld.java.
|
||||||
|
|
||||||
2003-04-21 John Camelon
|
2003-04-21 John Camelon
|
||||||
Updated DOMTests::testBug36247().
|
Updated DOMTests::testBug36247().
|
||||||
Moved testBug36692(), testBug36703(), testBug36708(), testBug36707(), testBug36689()
|
Moved testBug36692(), testBug36703(), testBug36708(), testBug36707(), testBug36689()
|
||||||
|
|
|
@ -187,7 +187,7 @@ public class AutomatedTest extends TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
fileList.add( file );
|
fileList.add( file );
|
||||||
suite.addTest( new AutomatedTest( file.getName().replaceAll(",", "_") ) );
|
suite.addTest( new AutomatedTest( file.getName().replace(',', '_') ) );
|
||||||
}
|
}
|
||||||
file = files[ i++ ];
|
file = files[ i++ ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ public class HelloWorld extends TestCase {
|
||||||
|
|
||||||
public void test1() throws Exception {
|
public void test1() throws Exception {
|
||||||
|
|
||||||
assertTrue("Exception to test", 0 != 0);
|
assertFalse("Exception to test", 0 != 0);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue