JAVA-24048 | Changed to Manual test

This commit is contained in:
GaetanoPiazzolla
2023-08-11 10:41:51 +02:00
parent 44a53d60f5
commit e89a549b17

View File

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