Add first test

This commit is contained in:
Grzegorz Piwowarek
2016-07-30 10:50:47 +02:00
parent ff84127f47
commit eff343b596
3 changed files with 31 additions and 3 deletions
@@ -3,6 +3,7 @@ package com.baeldung.immutable;
import org.immutables.value.Value;
@Value.Immutable
public class Person {
private String name;
public abstract class Person {
abstract String getName();
abstract Integer getAge();
}