getMock('Elastica\Connection'); $connection->expects($this->any())->method('getTransportObject')->will($this->returnValue($transport)); $connection->expects($this->any())->method('toArray')->will($this->returnValue(array())); $logger = $this->getMock('FOS\ElasticaBundle\Logger\ElasticaLogger'); $logger ->expects($this->once()) ->method('logQuery') ->with( 'foo', Request::GET, $this->isType('array'), $this->isType('float'), $this->isType('array'), $this->isType('array') ); $client = $this->getMockBuilder('FOS\ElasticaBundle\Elastica\Client') ->setMethods(array('getConnection')) ->getMock(); $client->expects($this->any())->method('getConnection')->will($this->returnValue($connection)); $client->setLogger($logger); $response = $client->request('foo'); $this->assertInstanceOf('Elastica\Response', $response); } }