AppserverIo\Appserver\Core\ServerNodeConfigurationTest::testGetConnectionHandlers PHP Метод

testGetConnectionHandlers() публичный Метод

Checks whether the getConnectionHandlers() method returns the expected result.
public testGetConnectionHandlers ( ) : void
Результат void
    public function testGetConnectionHandlers()
    {
        // initialize the array with expected result
        $connectionHandlers = json_decode(file_get_contents(__DIR__ . '/Api/Node/_files/prepareConnectionHandlers.json'));
        // create a mock configuration instance
        $mockNode = $this->getMock('AppserverIo\\Appserver\\Core\\Api\\Node\\ServerNode', array('getConnectionHandlersAsArray'));
        $mockNode->expects($this->once())->method('getConnectionHandlersAsArray')->will($this->returnValue($connectionHandlers));
        // initialize the server node
        $serverNode = new ServerNodeConfiguration($mockNode);
        // check the array with the connection handlers data
        $this->assertSame($connectionHandlers, $serverNode->getConnectionHandlers());
    }