2015-05-31 11:55:18 +03:00
|
|
|
package com.iluwatar.doubledispatch;
|
2015-04-12 23:49:00 +03:00
|
|
|
|
2015-04-15 21:25:26 +03:00
|
|
|
import org.junit.Test;
|
|
|
|
|
2015-05-31 11:55:18 +03:00
|
|
|
import com.iluwatar.doubledispatch.App;
|
2015-04-15 21:45:14 +03:00
|
|
|
|
2015-08-18 22:32:13 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Application test
|
|
|
|
*
|
|
|
|
*/
|
2015-04-12 23:49:00 +03:00
|
|
|
public class AppTest {
|
2015-04-15 21:25:26 +03:00
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test() {
|
|
|
|
String[] args = {};
|
|
|
|
App.main(args);
|
|
|
|
}
|
2015-04-12 23:49:00 +03:00
|
|
|
}
|