#107 Flyweight example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-18 22:51:08 +03:00
parent 25a2fc756d
commit de784cfdc1
7 changed files with 107 additions and 73 deletions

View File

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