Package com.bddinaction.flyinghigh.model

Examples of com.bddinaction.flyinghigh.model.FrequentFlyer$FrequentFlyerBuilder


        Thucydides.getCurrentSession().put("member", persona.getFrequentFlyer());
    }

    @Given("I am a $status Frequent Flyer member")
    public void i_am_a_member_of_status(Status status) throws Throwable {
        FrequentFlyer member = FrequentFlyer.withFrequentFlyerNumber("12345678").named("Joe","Blogs").withStatus(status);
        Thucydides.getCurrentSession().put("member", member);
    }
View Full Code Here

TOP

Related Classes of com.bddinaction.flyinghigh.model.FrequentFlyer$FrequentFlyerBuilder

Copyright © 2018 www.massapicom. 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.