17 lines
261 B
Java
17 lines
261 B
Java
|
|
import fi.helsinki.cs.tmc.edutestutils.Points;
|
|
import static org.junit.Assert.assertTrue;
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
@Points("3-5")
|
|
public class TestStub {
|
|
|
|
@Test
|
|
public void testCalls()
|
|
{
|
|
assertTrue("You shall pass", true);
|
|
}
|
|
}
|