Package com.sirenian.hellbound.scenarios

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

package com.sirenian.hellbound.scenarios;

import com.sirenian.hellbound.events.ThePlayerPressesTheLeftKey;
import com.sirenian.hellbound.outcomes.TheGlyphShouldBeAgainstTheLeftWall;

public class TheGlyphWillNotMoveLeft extends HellboundScenario {

    protected void specifySteps() {
        given(new TheGlyphIsAgainstTheLeftWall());
        when(new ThePlayerPressesTheLeftKey());
        then(new TheGlyphShouldBeAgainstTheLeftWall());
    }

}
TOP

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

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.