Java 11 migraiton: mute-idiom

This commit is contained in:
Anurag Agarwal
2020-04-12 22:58:50 +00:00
parent 9b105d770d
commit 2fa938c02d
3 changed files with 20 additions and 26 deletions

View File

@@ -27,12 +27,11 @@ import org.junit.jupiter.api.Test;
/**
* Tests that Mute idiom example runs without errors.
*
*/
public class AppTest {
@Test
public void test() throws Exception {
App.main(null);
public void test() {
App.main(new String[]{});
}
}