MaketRandevu/tests/phpunit/engine/Type/UrlTest.php

37 lines
1.1 KiB
PHP
Raw Normal View History

<?php
2016-07-09 12:03:34 +03:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
2016-07-09 12:03:34 +03:00
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.2.0
* ---------------------------------------------------------------------------- */
2018-11-03 19:10:34 +03:00
namespace EA\Engine\Type;
2016-07-09 12:03:34 +03:00
2018-11-03 19:10:34 +03:00
use PHPUnit\Framework\TestCase;
class UrlTest extends TestCase {
public function testUrlType()
{
$type = new Url('http://localhost');
$this->assertEquals('http://localhost', $type->get());
}
2016-07-09 12:03:34 +03:00
public function testUrlTypeThrowsExceptionWithInvalidUrl()
{
2018-11-03 19:10:34 +03:00
$this->expectException(\InvalidArgumentException::class);
2016-07-09 12:03:34 +03:00
new Url('abcdef');
}
public function testUrlTypeThrowsExceptionWithInvalidValue()
{
2018-11-03 19:10:34 +03:00
$this->expectException(\InvalidArgumentException::class);
new Url(NULL);
2016-07-09 12:03:34 +03:00
}
}