source: java2python/junit-t/src/main/java/unittest/TestCase.java@ 1111

Last change on this file since 1111 was 896, checked in by wouter, 4 months ago

#310 moved GetResourcesTest to junit-t because this test is so much easier if we have junit translator and package translation. junit tests now require @RunWith annotation for proper translation. Added more translators

File size: 312 bytes
Line 
1package unittest;
2
3/*
4 * Fake class, used only as a marker for other classes, indicating that
5 * that class contains @Test annotations and thus is a testcase.
6 * This class will automatically translate to unittest.TestCase in python
7 * because that' s the way Stub works.
8 */
9public abstract class TestCase {
10
11}
Note: See TracBrowser for help on using the repository browser.