I have a question regarding testSuites. In jUnit you could create test
suites like this:

public static void suite()
{
  TestSuite suite = new TestSuite();
  suite.addTest(new MyTest("testEquals"));
  suite.addTest(new MyTest("testAdd"));
  return suite;
}

This would create a test-suite containing the two test-methods
testEqual and testAdd.
It seems like this is not possible when extending AndriodTestCase
(since AndriodTestCase doesn't override the junit TestCase constructor
taking a single String as argument).

Is there any other way of creating test suites containing specific
test-methods?

BR,
Leif

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to