Hi,
We are having two Testsuite classes to run tellurium tests.
Below is first Testsuite which *if this runs successfully then only another
testsuite have to be executed*. Is there any way to achive such dependency?
*import* org.junit.runner.RunWith;
*import* org.junit.runners.Suite;
*import* com.org.app.webtests.AddSampleDataJUnitTests;
@RunWith(Suite.*class*)
@Suite.SuiteClasses({
EnableEletronicSLAJUnitTests.*class*,
AddSampleDataJUnitTests.*class* })
*public* *class* SampleDataTestSuite{}
Also I have seen herarechy of 'TelluriumJUnitTestCase' class that we
extending in each test class. It didn't extending JUnit Testcase class at
any level.
Below approach is giving compatibilty issue...Is the above reason?
**
*public* *class* Sample *extends* TestSuite {
*static* *public* Test suite() {
TestSuite suite = *new* TestSuite();
suite.addTestSuite(AddSampleDataJUnitTests.*class*);
*return* suite;
}
}
--
*Thanks,
*Ghanshyam Baheti.
-------------------------------------------------------------------
--
You received this message because you are subscribed to the Google Groups
"tellurium-users" 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/tellurium-users?hl=en.