BAEL-5421

This commit is contained in:
opokharel
2022-06-25 11:35:39 -06:00
parent f00baba56e
commit aac2cd2cda

View File

@@ -1,14 +1,16 @@
package com.baeldung.jar;
import java.io.IOException;
import org.junit.jupiter.api.Test;
class MySampleGUIAppnUnitTest throws IOException {
class MySampleGUIAppnUnitTest {
@Test
void testMain() throws IOException {
MySampleGUIAppn instance = new MySampleGUIAppn();
String [] args = null;
System.exit(DO_NOTHING_ON_CLOSE);
main(args);
System.exit(0);
MySampleGUIAppn.main(args);
}
}