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

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

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