Kraken\_Unit\Runtime\RuntimeModelTest::testProtectedApiIsLoopState_ReturnsTrue_WhenLoopStateDoesMatch PHP Метод

testProtectedApiIsLoopState_ReturnsTrue_WhenLoopStateDoesMatch() публичный Метод

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