5 lines
284 B
Bash
5 lines
284 B
Bash
|
#!/usr/bin/env bash
|
||
|
java --module-path mods:libs \
|
||
|
--add-modules com.baeldung.library.test \
|
||
|
--add-opens com.baeldung.library.core/com.baeldung.library.core=com.baeldung.library.test \
|
||
|
org.junit.platform.console.ConsoleLauncher --select-class com.baeldung.library.test.LibraryUnitTest
|