Kraken\_Unit\Runtime\RuntimeModelTest::testApiSetSupervisor_SetsNull PHP 메소드

testApiSetSupervisor_SetsNull() 공개 메소드

    public function testApiSetSupervisor_SetsNull()
    {
        $runtime = $this->createModel();
        $runtime->setSupervisor(null);
        $this->assertSame(null, $runtime->getSupervisor());
    }
RuntimeModelTest