Skip to content

Instantly share code, notes, and snippets.

@mikolajpe
Created September 26, 2018 15:30
Show Gist options
  • Save mikolajpe/da06ac8054b5290ae79329631ccba018 to your computer and use it in GitHub Desktop.
Save mikolajpe/da06ac8054b5290ae79329631ccba018 to your computer and use it in GitHub Desktop.
<?php
class ApiCest
{
public function tryApi(ApiTester $I)
{
$I->sendGET('/');
$I->seeResponseCodeIs(200);
$I->seeResponseIsJson();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment