Kraken\_Unit\Runtime\RuntimeModelTest::testApiSetLoop_SetsNull PHP Méthode

testApiSetLoop_SetsNull() public méthode

    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