home6/test/GraphTaskTest.java

18 lines
281 B
Java

import static org.junit.Assert.*;
import org.junit.Test;
import java.util.*;
/** Testklass.
* @author jaanus
*/
public class GraphTaskTest {
@Test (timeout=20000)
public void test1() {
GraphTask.main (null);
assertTrue ("There are no tests", true);
}
}