14 lines
189 B
Java
14 lines
189 B
Java
|
import org.junit.Test;
|
||
|
|
||
|
/**
|
||
|
* Created by Srdjan on 03-May-17.
|
||
|
*/
|
||
|
public class AppTest {
|
||
|
@Test
|
||
|
public void main() throws Exception {
|
||
|
|
||
|
String[] args = {};
|
||
|
App.main(args);
|
||
|
}
|
||
|
|
||
|
}
|