File "GeoTest.php"

Full Path: /home/bettaeza/flyinsyria.com/simplesoftwareio/simple-qrcode/tests/DataTypes/GeoTest.php
File size: 399 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use PHPUnit\Framework\TestCase;
use SimpleSoftwareIO\QrCode\DataTypes\Geo;

class GeoTest extends TestCase
{
    public function test_it_generates_the_proper_format_for_a_geo_coordinate()
    {
        $geo = new Geo();
        $geo->create([10.254, -30.254]);

        $properFormat = 'geo:10.254,-30.254';

        $this->assertEquals($properFormat, strval($geo));
    }
}