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

37 lines
1.1 KiB
PHP
Raw Permalink 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 NonEmptyTextTest extends TestCase {
public function testNonEmptyStringType()
{
$type = new NonEmptyText('Hello!');
$this->assertEquals('Hello!', $type->get());
}
2016-07-09 12:03:34 +03:00
public function testNonEmptyStringTypeThrowsExceptionWithEmptyString()
{
2018-11-03 19:10:34 +03:00
$this->expectException(\InvalidArgumentException::class);
new NonEmptyText('');
2016-07-09 12:03:34 +03:00
}
public function testNonEmptyStringTypeThrowsExceptionWithInvalidValue()
{
2018-11-03 19:10:34 +03:00
$this->expectException(\InvalidArgumentException::class);
new NonEmptyText(NULL);
2016-07-09 12:03:34 +03:00
}
}