Considere o código abaixo em JUnit 4.
import org.junit.Test;
import junit.framework.TestCase;
public class TesteUnidade extends TestCase {
private int x = 11;
private int y = 2;
@Test public void metodo() {
int z = x % y;
...I...
}
}
Para o teste funcionar, a lacuna I deve ser preenchida com