Add additional tests

This commit is contained in:
Grzegorz Piwowarek
2016-07-30 12:08:27 +02:00
parent eff343b596
commit 591e3507fb
4 changed files with 49 additions and 0 deletions
@@ -2,5 +2,7 @@ package com.baeldung.immutable;
public class ValueObject {
public ValueObject() {
}
}
@@ -0,0 +1,13 @@
package com.baeldung.immutable.auxiliary;
import org.immutables.value.Value;
@Value.Immutable
public abstract class Person {
abstract String getName();
abstract Integer getAge();
@Value.Auxiliary
abstract String getAuxiliaryField();
}