for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HelePartnerSyncApi\Method;
class CheckHealthTest extends MethodTestCase
{
public function testSuccess()
$data = array(
'foo' => 'fooValue',
'bar' => 'barValue',
);
$request = $this->getRequestMock($data);
$method = new CheckHealth();
$response = $method->call($request);
$this->assertSame($data, $response);
}