mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
debug tests show generic junit.gramework.TestSuite name in test result
This commit is contained in:
parent
34f71e2703
commit
370175a05c
1 changed files with 2 additions and 8 deletions
|
@ -23,14 +23,10 @@ import junit.framework.TestSuite;
|
|||
* @author Judy N. Green
|
||||
* @since Jul 19, 2002
|
||||
*/
|
||||
public class AllDebugTests {
|
||||
public class AllDebugTests extends TestSuite {
|
||||
|
||||
public static void main(String[] args) {
|
||||
junit.textui.TestRunner.run(suite());
|
||||
}
|
||||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite();
|
||||
TestSuite suite = new AllDebugTests();
|
||||
|
||||
// Just add more test cases here as you create them for
|
||||
// each class being tested
|
||||
|
@ -40,8 +36,6 @@ public class AllDebugTests {
|
|||
suite.addTest(LocationTests.suite());
|
||||
suite.addTest(EventBreakpointTests.suite());
|
||||
return suite;
|
||||
|
||||
|
||||
}
|
||||
} // End of AllDebugTests.java
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue