Package unit.validation

Source Code of unit.validation.PersonBuilder

package unit.validation;

import litmus.Builder;
import models.Person;

public class PersonBuilder extends Builder<Person> {

    private String email;

    @Override
    public Person build() {
        Person person = new Person("Ben", "Verbeken");
        person.email = email;
        return person;
    }


    public PersonBuilder withEmail(String email) {
        this.email = email;
        return this;
    }

}
TOP

Related Classes of unit.validation.PersonBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.