for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TraderInteractive\NetAcuity\Tests;
use TraderInteractive\NetAcuity\NetAcuity;
/**
* @coversDefaultClass \TraderInteractive\NetAcuity\NetAcuity
* @covers ::__construct
*/
final class NetAcuityTest extends NetAcuityTestSuite
{
* @test
* @covers ::getGeo
*
* @return void
public function getGeo()
$client = new NetAcuity(new TestDatabase());
$actual = $client->getGeo('127.0.0.1');
$expected = ['some' => 'data'];
$this->assertSame($expected, $actual);
}