monaco-editor/website/index/samples/sample.java.txt
2016-06-16 12:34:36 +02:00

14 lines
No EOL
282 B
Text

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);
}
}