D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
3023067
/
cwd
/
www
/
vendor
/
simplesoftwareio
/
simple-qrcode
/
tests
/
DataTypes
/
Filename :
GeoTest.php
back
Copy
<?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)); } }