blob: 70281e6fcb1262e48b652468d83b369dfea0f717 (
plain)
1
2
3
4
5
6
7
8
9
|
package junit.tests.framework;
import junit.framework.TestCase;
public class NoArgTestCaseTest extends TestCase {
public void testNothing() { // If this compiles, the no arg ctor is there
}
}
|