JAVA-24048 | Changed to Manual test

This commit is contained in:
GaetanoPiazzolla 2023-08-11 10:41:51 +02:00
parent 7e60be5c2b
commit 8e1bd93d12

View File

@ -1,15 +1,15 @@
package com.baeldung.jar; package com.baeldung.jar;
import java.io.IOException;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
class MySampleGUIAppnUnitTest { class MySampleGUIAppManualTest {
@Test @Test
void testMain() throws IOException { void testMain() {
System.setProperty("java.awt.headless", "true"); System.setProperty("java.awt.headless", "true");
String [] args = null; String [] args = null;
System.exit(0); System.exit(0);
MySampleGUIAppn.main(args); MySampleGUIAppn.main(args);
} }
} }