monaco-editor/website/index/samples/sample.java.txt

14 lines
282 B
Plaintext
Raw Normal View History

2016-06-16 18:34:36 +08:00
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);
}
}