Kraken\_Unit\Runtime\RuntimeModelTest::testApiSetSupervisor_SetsNull PHP Method

testApiSetSupervisor_SetsNull() public method

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