Kumite Experiment!
public class HelloWorld
{
public static int Execute()
{
System.out.println("My first Kumite");
return 1;
}
}
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import org.junit.runners.JUnit4;
// TODO: Replace examples and use TDD development by writing your own tests
public class SolutionTest {
@Test
public void testSomething() {
// assertEquals("expected", "actual");
assertEquals(1,HelloWorld.Execute());
}
}