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
@@ -1,5 +1,9 @@
package com.baeldung.immutable;
public class Address {
import org.immutables.value.Value;
@Value.Immutable
public interface Address {
String getStreetName();
Integer getNumber();
}