Example #1
0
    public void DeletedShouldShiftToDroppingOnUpdate()
    {
        IGridState deletedState = new DeletedState(gridMock);

        deletedState.OnUpdate();
        gridMock.Received().DropBlocks();
        gridMock.Received().SetState(GridStates.Dropping);
    }
Example #2
0
    public void DeletedShouldShiftToDroppingOnUpdate()
    {
        IGridState deletedState = new DeletedState(gridMock);

        deletedState.OnUpdate();
        gridMock.Received().DropBlocks();
        gridMock.Received().SetState(GridStates.Dropping);
    }