Merge remote-tracking branch 'upstream/master'

This commit is contained in:
JuhoKang
2016-02-03 22:49:59 +09:00
94 changed files with 953 additions and 86 deletions

View File

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

View File

@ -15,9 +15,10 @@ import org.junit.Test;
public class HeroStatTest {
/**
* Tester for equals() and hashCode() methods of a class.
* Tester for equals() and hashCode() methods of a class. Using guava's EqualsTester
*
* @see http://www.javadoc.io/doc/com.google.guava/guava-testlib/19.0
* @see http://static.javadoc.io/com.google.guava/guava-testlib/19.0/com/google/common/testing/
* EqualsTester.html
*/
@Test
public void testEquals() {