BAEL-2990 Automatic generation of the Builder pattern with FreeBuilder
This commit is contained in:
parent
e40946249a
commit
ce7c3067f2
|
@ -1,16 +1,16 @@
|
||||||
package com.baeldung.freebuilder;
|
package com.baeldung.freebuilder;
|
||||||
|
|
||||||
import com.baeldung.freebuilder.builder.classic.Address;
|
|
||||||
import org.junit.jupiter.api.Assertions;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
import java.util.Optional;
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNull;
|
import static org.junit.jupiter.api.Assertions.assertNull;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import com.baeldung.freebuilder.builder.classic.Address;
|
||||||
|
|
||||||
public class EmployeeBuilderUnitTest {
|
public class EmployeeBuilderUnitTest {
|
||||||
|
|
||||||
private static final int PIN_CODE = 223344;
|
private static final int PIN_CODE = 223344;
|
||||||
|
|
Loading…
Reference in New Issue