16 lines
215 B
Java
16 lines
215 B
Java
package com.iluwatar.mute;
|
|
|
|
import org.junit.Test;
|
|
|
|
/**
|
|
* Tests that Mute idiom example runs without errors.
|
|
*
|
|
*/
|
|
public class AppTest {
|
|
|
|
@Test
|
|
public void test() throws Exception {
|
|
App.main(null);
|
|
}
|
|
}
|