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

testApiSetEventEmitter_SetsNull() public method

    public function testApiSetEventEmitter_SetsNull()
    {
        $runtime = $this->createModel();
        $runtime->setEventEmitter(null);
        $this->assertSame(null, $runtime->getEventEmitter());
    }
RuntimeModelTest