22 lines
296 B
Java
22 lines
296 B
Java
|
package main;
|
||
|
|
||
|
import static org.junit.Assert.*;
|
||
|
|
||
|
import org.junit.*;
|
||
|
|
||
|
|
||
|
public class MainTester {
|
||
|
|
||
|
@Before
|
||
|
public void setUp() throws Exception {}
|
||
|
|
||
|
@After
|
||
|
public void tearDown() throws Exception {}
|
||
|
|
||
|
@Test
|
||
|
public void test() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
}
|