BAEL-2990 Automatic generation of the Builder pattern with FreeBuilder

This commit is contained in:
Chirag Dewan 2019-07-17 10:19:50 +05:30
parent e40946249a
commit ce7c3067f2
1 changed files with 6 additions and 6 deletions

View File

@ -1,16 +1,16 @@
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.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
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 {
private static final int PIN_CODE = 223344;