Skip to content

Instantly share code, notes, and snippets.

@mikolajprzybysz
Created September 26, 2018 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikolajprzybysz/da06ac8054b5290ae79329631ccba018 to your computer and use it in GitHub Desktop.
Save mikolajprzybysz/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