2015-05-31 11:55:18 +03:00
|
|
|
package com.iluwatar.nullobject;
|
2015-04-21 22:57:50 +03:00
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
2015-05-31 11:55:18 +03:00
|
|
|
import com.iluwatar.nullobject.App;
|
2015-04-23 22:35:58 +03:00
|
|
|
|
2015-04-21 22:57:50 +03:00
|
|
|
public class AppTest {
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test() {
|
|
|
|
String[] args = {};
|
|
|
|
App.main(args);
|
|
|
|
}
|
|
|
|
}
|