debuggercdi/com.nokia.cdt.debug.cw.symbian.tests/src/com/nokia/cdt/debug/cw/symbian/tests/AllTests.java
author cawthron
Tue, 24 Mar 2009 22:20:21 -0500
changeset 2 d760517a8095
child 9 6ef327765a4e
permissions -rw-r--r--
new
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
package com.nokia.cdt.debug.cw.symbian.tests;
cawthron
parents:
diff changeset
     2
cawthron
parents:
diff changeset
     3
import junit.framework.Test;
cawthron
parents:
diff changeset
     4
import junit.framework.TestSuite;
cawthron
parents:
diff changeset
     5
cawthron
parents:
diff changeset
     6
public class AllTests {
cawthron
parents:
diff changeset
     7
cawthron
parents:
diff changeset
     8
	public static Test suite() {
cawthron
parents:
diff changeset
     9
		TestSuite suite = new TestSuite(
cawthron
parents:
diff changeset
    10
				"Test for com.nokia.cdt.debug.cw.symbian.tests");
cawthron
parents:
diff changeset
    11
		//$JUnit-BEGIN$
cawthron
parents:
diff changeset
    12
		suite.addTestSuite(SymbianE32ParserTest.class);
cawthron
parents:
diff changeset
    13
		suite.addTestSuite(DwarfReaderTest.class);
cawthron
parents:
diff changeset
    14
		suite.addTestSuite(SymbolReaderTest.class);
cawthron
parents:
diff changeset
    15
		//$JUnit-END$
cawthron
parents:
diff changeset
    16
		return suite;
cawthron
parents:
diff changeset
    17
	}
cawthron
parents:
diff changeset
    18
cawthron
parents:
diff changeset
    19
}