Package org.jbehave.core.story.domain

Source Code of org.jbehave.core.story.domain.AbstractStepBehaviour$ScenarioComponentWithCleanUp

package org.jbehave.core.story.domain;

import org.jbehave.core.minimock.UsingMiniMock;
import org.jbehave.core.mock.Mock;
import org.jbehave.core.story.renderer.Renderer;

public class AbstractStepBehaviour extends UsingMiniMock {
   
    public static class StubbedAbstractStep extends AbstractStep {
        public StubbedAbstractStep(ScenarioComponent component) {
            super(component);
        }
        public void perform(World world) {}
    }
   
    public void shouldDelegateNarration() {
        // given
        Mock component = mock(ScenarioComponent.class);
        AbstractStep step = new StubbedAbstractStep((ScenarioComponent)component);
        Renderer renderer = (Renderer) stub(Renderer.class);
       
        // expect
        component.expects("narrateTo").with(renderer);
       
        // when
        step.narrateTo(renderer);
       
        // then
        verifyMocks();
    }

    public void shouldDelegateVerifyingMocks() {
        // given
        Mock component = mock(ScenarioComponent.class);
        AbstractStep step = new StubbedAbstractStep((ScenarioComponent)component);
       
        // expect
        component.expects("verifyMocks");
       
        // when
        step.verifyMocks();
       
        // then
        verifyMocks();
    }
   
    public void shouldDelegateContainsMocks() {
        // given
        Mock component = mock(ScenarioComponent.class);
        AbstractStep step = new StubbedAbstractStep((ScenarioComponent)component);
       
        // expect
        component.expects("containsMocks").will(returnValue(false));
       
        // when
        step.containsMocks();
       
        // then
        verifyMocks();
    }
   
    public interface ScenarioComponentWithCleanUp extends ScenarioComponent, CleansUpWorld {}
   
    public void shouldTellComponentWithCleanUpToCleanUpWorld() throws Exception {
        // given
        Mock component = mock(ScenarioComponentWithCleanUp.class);
        AbstractStep step = new StubbedAbstractStep((ScenarioComponent)component);
        World world = new HashMapWorld();
       
        // expect
        component.expects("cleanUp").with(world);
       
        // when
        step.cleanUp(world);
       
        // then
        verifyMocks();
    }
}
TOP

Related Classes of org.jbehave.core.story.domain.AbstractStepBehaviour$ScenarioComponentWithCleanUp

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.