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

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

    public function testProtectedApiGetLoopState_ReturnsLoopState()
    {
        $runtime = $this->createModel();
        $this->setProtectedProperty($runtime, 'loopState', $state = 'state');
        $result = $this->callProtectedMethod($runtime, 'getLoopState');
        $this->assertSame($state, $result);
    }
RuntimeModelTest