mockClient = $this->getMockBuilder('\Leaseweb\InfluxDB\Client') ->disableOriginalConstructor() ->getMock(); $this->mockClient->expects($this->any()) ->method('getBaseURI') ->will($this->returnValue($this->equalTo('http://localhost:8086'))); $this->db = new Database('influx_test_db', $this->mockClient); $this->dataToInsert = file_get_contents(dirname(__FILE__) . '/input.example.json'); } public function testWrite() { $this->assertTrue( 'mockClient' ); } }