import javax.swing.JOptionPane;
public class Loop{
public static void main(String[] args){
while(1!=0){
JOptionPane.showMessageDialog(null, "Annoying");
}
}
}
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
// TODO: Replace examples and use TDD by writing your own tests
class SolutionTest {
@Test
void testSomething() {
// assertEquals("expected", "actual");
}
}