add tests structure

This commit is contained in:
2022-07-09 22:16:46 +02:00
parent 8411ed0786
commit 740b14f868
5 changed files with 125 additions and 2 deletions

28
Tests/ClientTest.php Normal file
View File

@ -0,0 +1,28 @@
<?php
namespace D3\LinkmobilityClient\Tests;
use D3\LinkmobilityClient\Client;
class ApiClientTest extends ApiTestCase
{
public string $fixtureApiKey = 'fixtureApiKey';
/** @var ApiClient */
public Client $api;
public string $jsonFixture = 'json_content';
public function setUp():void
{
parent::setUp();
$this->api = new Client($this->fixtureApiKey);
}
/**
* @test
*/
public function testRun()
{
$this->assertTrue(true);
}
}