mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
28 lines
621 B
PHP
28 lines
621 B
PHP
<?php
|
|
|
|
namespace DNW\Skills\Tests;
|
|
|
|
use DNW\Skills\Guard;
|
|
use Exception;
|
|
class GuardTest extends TestCase
|
|
{
|
|
public function testArgumentNotNull(): void
|
|
{
|
|
$this->expectException(Exception::class);
|
|
Guard::argumentNotNull(null, "dummy");
|
|
}
|
|
|
|
public function testargumentIsValidIndex(): void
|
|
{
|
|
$this->expectException(Exception::class);
|
|
Guard::argumentIsValidIndex(25, 10, "dummy");
|
|
}
|
|
|
|
|
|
public function testargumentInRangeInclusive(): void
|
|
{
|
|
$this->expectException(Exception::class);
|
|
Guard::argumentInRangeInclusive(101, 0, 100, "dummy");
|
|
}
|
|
}
|