|
static array | $result = ["I am", "a test string", "for split"] |
|
Definition at line 26 of file SplitStringTest.php.
◆ setUp()
SplitStringTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 36 of file SplitStringTest.php.
39 $language = $this->createMock(
ILIAS\Language\Language::class);
40 $this->f =
new Refinery($dataFactory, $language);
41 $this->split_string = $this->f->string()->splitString(
"#");
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...
◆ tearDown()
SplitStringTest::tearDown |
( |
| ) |
|
|
protected |
Definition at line 44 of file SplitStringTest.php.
References null.
47 $this->split_string =
null;
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
◆ testApplyToWithInvalidValueWillLeadToErrorResult()
SplitStringTest::testApplyToWithInvalidValueWillLeadToErrorResult |
( |
| ) |
|
Definition at line 136 of file SplitStringTest.php.
139 $valueObject = $factory->ok(42);
141 $resultObject = $this->split_string->applyTo($valueObject);
143 $this->assertTrue($resultObject->isError());
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ testApplyToWithValidValueReturnsAnOkResult()
SplitStringTest::testApplyToWithValidValueReturnsAnOkResult |
( |
| ) |
|
Definition at line 125 of file SplitStringTest.php.
128 $valueObject = $factory->ok(self::STRING_TO_SPLIT);
130 $resultObject = $this->split_string->applyTo($valueObject);
132 $this->assertEquals(self::$result, $resultObject->value());
133 $this->assertFalse($resultObject->isError());
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ testInvoke()
SplitStringTest::testInvoke |
( |
| ) |
|
◆ testInvokeFails()
SplitStringTest::testInvokeFails |
( |
| ) |
|
◆ testTransform()
SplitStringTest::testTransform |
( |
| ) |
|
Definition at line 50 of file SplitStringTest.php.
52 $arr = $this->split_string->transform(self::STRING_TO_SPLIT);
53 $this->assertEquals(static::$result, $arr);
◆ testTransformFails()
SplitStringTest::testTransformFails |
( |
| ) |
|
Definition at line 56 of file SplitStringTest.php.
References Vendor\Package\$e.
61 $next_arr = $this->split_string->transform($arr);
65 $this->assertTrue($raised);
70 $with = $this->split_string->transform($without);
74 $this->assertTrue($raised);
79 $with = $this->split_string->transform($std_class);
83 $this->assertTrue($raised);
◆ $f
Refinery SplitStringTest::$f |
|
private |
◆ $result
array SplitStringTest::$result = ["I am", "a test string", "for split"] |
|
staticprotected |
◆ $split_string
◆ STRING_TO_SPLIT
const SplitStringTest::STRING_TO_SPLIT = "I am#a test string#for split" |
|
private |
The documentation for this class was generated from the following file: