Package org.jbehave.core.mock

Examples of org.jbehave.core.mock.Mock


import org.jbehave.core.mock.Mock;

public class GivenStepBehaviour extends UsingMiniMock {
    public void shouldTellGivenToSetUpWorld() throws Exception {
        // given
        Mock given = mock(Given.class);
        GivenStep step = new GivenStep((Given)given);
        World world = new HashMapWorld();
       
        // expect
        given.expects("setUp").with(world);
       
        // when
        step.perform(world);
       
        // then
View Full Code Here

TOP

Related Classes of org.jbehave.core.mock.Mock

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.