Kraken\_Unit\Loop\LoopExtendedAwareObjectTest::testApiSetLoop_SetsLoop PHP Method

testApiSetLoop_SetsLoop() public method

    public function testApiSetLoop_SetsLoop()
    {
        $loop = $this->createLoop();
        $object = $this->createObject();
        $this->assertSame(null, $object->getLoop());
        $object->setLoop($loop);
        $this->assertSame($loop, $object->getLoop());
    }