[BAEL-5421] by @opokharel

[BAEL-5421] by @opokharel
This commit is contained in:
opokharel
2022-06-25 11:00:26 -06:00
parent 31bd634134
commit 2cb4fdbbc5
2 changed files with 40 additions and 0 deletions

View File

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