BAEL-5421
This commit is contained in:
parent
d29b19e148
commit
ded7b0af8f
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue