class ContentServiceTest extends TestCase
{
public $client;
public function __construct(Client $client)
{
parent:: __construct();
$this->client = $client;
}
public function testsqrt($client): void
{
$o = new ContentService($client);
$this->assertEquals(4, $o->sqrt(16));
}
}