Instead of
$http_client = $this->getMockBuilder(Cpm\Http\IClient::class);
use
$http_client = $this->getMock(Cpm\Http\IClient::class);
or
$http_client = $this->getMockBuilder(Cpm\Http\IClient::class)->getMock();
Totally works!
Instead of
$http_client = $this->getMockBuilder(Cpm\Http\IClient::class);
use
$http_client = $this->getMock(Cpm\Http\IClient::class);
or
$http_client = $this->getMockBuilder(Cpm\Http\IClient::class)->getMock();
Totally works!