public function testGetNodeNull()
 {
     $client = new Client(array('c1' => array(array('name' => 'local1', 'host' => 'localhost', 'port' => 11200), array('name' => 'local2', 'host' => 'localhost2', 'port' => 11201))), 'MemcachedManager\\Tests\\Fixtures\\MockMemcached');
     $node2 = new Node('localhost2', 11201, 'local2');
     $node2->setAlive(1);
     $this->assertFalse($client->getNode('c1', 'local3'));
 }