Definition at line 30 of file GroupTest.php.
◆ setUp()
ILIAS\Tests\Refinery\String\GroupTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 34 of file GroupTest.php.
37 $language = $this->getMockBuilder(\
ILIAS\Language\Language::class)
38 ->disableOriginalConstructor()
41 $this->group =
new StringGroup($dataFactory, $language);
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ testGreaterThanInstance()
ILIAS\Tests\Refinery\String\GroupTest::testGreaterThanInstance |
( |
| ) |
|
Definition at line 44 of file GroupTest.php.
46 $instance = $this->group->hasMaxLength(42);
47 $this->assertInstanceOf(HasMaxLength::class, $instance);
◆ testLowerThanInstance()
ILIAS\Tests\Refinery\String\GroupTest::testLowerThanInstance |
( |
| ) |
|
Definition at line 50 of file GroupTest.php.
52 $instance = $this->group->hasMinLength(42);
53 $this->assertInstanceOf(HasMinLength::class, $instance);
◆ testMakeClickable()
ILIAS\Tests\Refinery\String\GroupTest::testMakeClickable |
( |
| ) |
|
Definition at line 56 of file GroupTest.php.
58 $instance = $this->group->makeClickable();
59 $this->assertInstanceOf(MakeClickable::class, $instance);
◆ $group
StringGroup ILIAS\Tests\Refinery\String\GroupTest::$group |
|
private |
The documentation for this class was generated from the following file: