| 1 | <?php |
||
| 12 | abstract class AbstractTest extends TestCase |
||
| 13 | { |
||
| 14 | |||
| 15 | /** Authentication constants */ |
||
| 16 | const USERNAME = 'githubapi-octocat'; |
||
| 17 | const PASSWORD = 'S=p}g2E($L#T(K3x'; |
||
| 18 | |||
| 19 | /** @var Client */ |
||
| 20 | protected $client; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * AbstractTest constructor. |
||
| 24 | * |
||
| 25 | * @param null $name |
||
| 26 | * @param array $data |
||
| 27 | * @param string $dataName |
||
| 28 | */ |
||
| 29 | public function __construct($name = null, array $data = [], $dataName = '') |
||
| 39 | } |