mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 06:11:11 +03:00
28 lines
627 B
PHP
28 lines
627 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkioTest\Shlink\Core\Entity;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Shlinkio\Shlink\Core\Entity\VisitLocation;
|
||
|
|
||
|
class VisitLocationTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function valuesFoundWhenExchangingArrayAreCastToString()
|
||
|
{
|
||
|
$payload = [
|
||
|
'latitude' => 1000.7,
|
||
|
'longitude' => -2000.4,
|
||
|
];
|
||
|
|
||
|
$location = new VisitLocation();
|
||
|
$location->exchangeArray($payload);
|
||
|
|
||
|
$this->assertSame('1000.7', $location->getLatitude());
|
||
|
$this->assertSame('-2000.4', $location->getLongitude());
|
||
|
}
|
||
|
}
|