File "PhoneNumberTest.php"
Full Path: /home/bettaeza/flyinsyria.com/simplesoftwareio/simple-qrcode/tests/DataTypes/PhoneNumberTest.php
File size: 450 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use PHPUnit\Framework\TestCase;
use SimpleSoftwareIO\QrCode\DataTypes\PhoneNumber;
class PhoneNumberTest extends TestCase
{
public function test_it_generates_the_proper_format_for_calling_a_phone_number()
{
$phoneNumber = new PhoneNumber();
$phoneNumber->create(['555-555-5555']);
$properFormat = 'tel:555-555-5555';
$this->assertEquals($properFormat, strval($phoneNumber));
}
}