ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
IrregularTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
37 
40 
41 class IrregularTest extends TestCase
42 {
43  public function testConstruct(): void
44  {
45  $irregular = new Irregular('foo');
46  $this->assertInstanceOf(Irregular::class, $irregular);
47  }
48 
49  public function testValue(): void
50  {
51  $irregular = new Irregular('foo');
52  $this->assertEquals('foo', $irregular->value());
53  }
54 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...