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

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

    public function testApiSetLoop_SetsNull()
    {
        $runtime = $this->createModel();
        $runtime->setLoop(null);
        $this->assertSame(null, $this->getProtectedProperty($runtime, 'loop'));
        $this->assertSame(null, $this->getProtectedProperty($runtime, 'loopBackup'));
    }
RuntimeModelTest