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

testProtectedApiIsLoopState_ReturnsTrue_WhenLoopStateDoesMatch() public method

    public function testProtectedApiIsLoopState_ReturnsTrue_WhenLoopStateDoesMatch()
    {
        $runtime = $this->createModel();
        $this->setProtectedProperty($runtime, 'loopState', $state = 'state');
        $this->assertTrue($this->callProtectedMethod($runtime, 'isLoopState', [$state]));
    }
RuntimeModelTest