Add initial website pages

This commit is contained in:
Alex Dima 2016-06-16 12:34:36 +02:00
parent f2b9092438
commit 99bc54b159
55 changed files with 13029 additions and 1 deletions

View file

@ -0,0 +1,14 @@
import java.util.ArrayList;
import org.junit.Test;
public class Example {
@Test
public void method() {
org.junit.Assert.assertTrue( "isEmpty", new ArrayList<Integer>().isEmpty());
}
@Test(timeout=100) public void infinity() {
while(true);
}
}