setResolver() public method

Sets the DNS Resolver.
public setResolver ( React\Dns\Resolver\Resolver $resolver = null )
$resolver React\Dns\Resolver\Resolver
 /**
  * Tests run() with a connection configured to use the SSL transport.
  */
 public function testRunWithConnectionUsingSslTransport()
 {
     $loop = $this->getMockLoop();
     $connection = $this->getMockConnectionForAddConnection();
     $connections = array($connection);
     $writeStream = $this->getMockWriteStream();
     $writeStreams = array($writeStream);
     Phake::when($connection)->getOption('write')->thenReturn($writeStream);
     Phake::when($connection)->getOption('transport')->thenReturn('ssl');
     Phake::when($this->client)->getWriteStream($connection)->thenReturn($writeStream);
     Phake::when($this->client)->getLoop()->thenReturn($loop);
     $this->client->setLogger($this->getMockLogger());
     $this->client->setResolver($this->getMockResolver('null'));
     $this->client->run($connection);
     Phake::inOrder(Phake::verify($this->client)->emit('connect.before.all', array($connections)), Phake::verify($this->client)->addConnection($connection), Phake::verify($this->client)->emit('connect.after.all', array($connections, $writeStreams)), Phake::verify($loop, Phake::times(1))->run());
 }