mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
14 lines
No EOL
282 B
Text
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);
|
|
}
|
|
}
|
|
|