add tests for the combination of Builder and Value/Data

This commit is contained in:
Roel Spilker
2016-05-11 23:45:39 +02:00
parent a8a70da6ac
commit 8ba7750621
3 changed files with 231 additions and 0 deletions
@@ -0,0 +1,11 @@
import java.util.List;
@lombok.Builder @lombok.Value
class BuilderAndValue {
private final int zero = 0;
}
@lombok.Builder @lombok.Data
class BuilderAndData {
private final int zero = 0;
}