Exemplo n.º 1
0
        public void ShouldEnableToggleMidnightMadnessMode()
        {
            TestContext.WriteLine("should enable toggleMidnightMadnessMode");

            cpuBoard.start();
            cpuBoard.toggleMidnightMadnessMode();
            var state  = cpuBoard.getState();
            var result = state.asic?.wpc.time;

            Assert.That(result, Does.Match("MM!$"));
        }
Exemplo n.º 2
0
 public void toggleMidnightMadnessMode()
 {
     cpuBoard.toggleMidnightMadnessMode();
 }