Package com.sirenian.hellbound.outcomes

Examples of com.sirenian.hellbound.outcomes.TheGlyphShouldBeCentredAtTheTopOfThePit


public class TheFirstGlyphIsDisplayedOnTheBoard extends HellboundScenario {

    public void specifySteps() {
        given(new HellboundIsRunning());
        when(new ThePlayerStartsTheGame());
        then(new TheGlyphShouldBeCentredAtTheTopOfThePit());
    }
View Full Code Here


        when(new ThePlayerPressesRightRotate());
        then(new TheGlyphTurnsToTwoQuarters());
        when(new ThePlayerPressesRightRotate());
        then(new TheGlyphShouldTurnToOneQuarter());
        when(new ThePlayerPressesRightRotate());
        then(new TheGlyphShouldBeCentredAtTheTopOfThePit());
    }
View Full Code Here

    public void specifySteps() {
        given(new TheFirstGlyphIsDisplayedOnTheBoard());
        when(new ThePlayerPressesTheRightKey());
        then(new TheGlyphShouldMoveRight());
        when(new ThePlayerPressesTheLeftKey());
        then(new TheGlyphShouldBeCentredAtTheTopOfThePit());
        when(new ThePlayerPressesTheDownKey());
        then(new TheGlyphShouldMoveDownwards());
        then(new TheHeartbeatShouldBeSkipped());
    }
View Full Code Here

       
        when(new ThePlayerPressesLeftRotate());
        then(new TheGlyphTurnsToThreeQuarters());
       
        when(new ThePlayerPressesLeftRotate());
        then(new TheGlyphShouldBeCentredAtTheTopOfThePit());
    }
View Full Code Here

TOP

Related Classes of com.sirenian.hellbound.outcomes.TheGlyphShouldBeCentredAtTheTopOfThePit

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.