#107 Dao example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-18 22:08:18 +03:00
parent a7d25e0485
commit 3526d96e37
5 changed files with 89 additions and 61 deletions

View File

@@ -1,14 +1,19 @@
package com.iluwatar.dao;
import org.junit.Test;
import com.iluwatar.dao.App;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}
package com.iluwatar.dao;
import org.junit.Test;
import com.iluwatar.dao.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}