reversi.main.MainStartupCommand.Execute C# (CSharp) Method

Execute() public method

public Execute ( ) : void
return void
        public override void Execute()
        {
            application.LoadLevelAdditive ("game");
        }

Usage Example

コード例 #1
0
        public void testExecuteShouldLoadGameLevel()
        {
            _instance.Execute();

            _mockApplication.Received().LoadLevelAdditive("game");
        }
MainStartupCommand