14 lines
282 B
Plaintext
14 lines
282 B
Plaintext
|
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);
|
||
|
}
|
||
|
}
|
||
|
|