Kraken\_Unit\Network\Socket\WsServerTest::testApiSetComponent_SetsNullComponent_WhenComponentIsNotProvided PHP Method

testApiSetComponent_SetsNullComponent_WhenComponentIsNotProvided() public method

    public function testApiSetComponent_SetsNullComponent_WhenComponentIsNotProvided()
    {
        $aware = $this->createAware();
        $component = $this->createComponent();
        $server = $this->createServer($aware, $component);
        $server->setComponent();
        $this->assertInstanceOf(NullServer::class, $server->getComponent());
    }