Merge pull request #14571 from GaetanoPiazzolla/JAVA-24048-fix-test
JAVA-24048 | Changed to Manual test
This commit is contained in:
commit
bb8bb76538
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue