Package com.sirenian.hellbound.scenarios

Source Code of com.sirenian.hellbound.scenarios.TheGlyphIsAgainstTheRightWall

package com.sirenian.hellbound.scenarios;

import com.sirenian.hellbound.events.ThePlayerPressesTheRightKey;

public class TheGlyphIsAgainstTheRightWall extends HellboundScenario {

    protected void specifySteps() {
        given(new TheFirstGlyphIsDisplayedOnTheBoard());
        when(new ThePlayerPressesTheRightKey());
        when(new ThePlayerPressesTheRightKey());
        then(new TheGlyphShouldBeAgainstTheRightWall()); // sanity check
    }

}
TOP

Related Classes of com.sirenian.hellbound.scenarios.TheGlyphIsAgainstTheRightWall

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.