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

37 lines
1.0 KiB
PHP
Raw Normal View History

<?php
2016-07-09 11:33:13 +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 11:33:13 +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 11:33:13 +03:00
2018-11-03 19:10:34 +03:00
use PHPUnit\Framework\TestCase;
class IntegerTest extends TestCase {
public function testIntType()
{
$type = new Integer(1);
$this->assertEquals(1, $type->get());
}
2016-07-09 11:33:13 +03:00
public function testIntTypeThrowsExceptionWithFloat()
{
2018-11-03 19:10:34 +03:00
$this->expectException(\InvalidArgumentException::class);
new Integer(100.00);
2016-07-09 12:03:34 +03:00
}
public function testIntTypeThrowsExceptionWithWithString()
{
2018-11-03 19:10:34 +03:00
$this->expectException(\InvalidArgumentException::class);
new Integer('invalid');
2016-07-09 11:33:13 +03:00
}
}