Kraken\_Unit\Runtime\RuntimeModelTest::testProtectedApiStartLoop_DoesNothing_WhenNextStateIsStopped PHP Method

testProtectedApiStartLoop_DoesNothing_WhenNextStateIsStopped() public method

    public function testProtectedApiStartLoop_DoesNothing_WhenNextStateIsStopped()
    {
        $runtime = $this->createModel([], ['getLoop']);
        $runtime->expects($this->never())->method('getLoop');
        $this->callProtectedMethod($runtime, 'startLoop');
    }
RuntimeModelTest