16 protected static $result = array(
"I am",
"a test string",
"for split");
23 protected function setUp() : void
25 $dataFactory = new \ILIAS\Data\Factory();
26 $language = $this->createMock(
'\ilLanguage');
27 $this->f = new \ILIAS\Refinery\Factory($dataFactory, $language);
28 $this->split_string = $this->f->string()->splitString(
"#");
34 $this->split_string = null;
39 $arr = $this->split_string->transform(self::STRING_TO_SPLIT);
48 $next_arr = $this->split_string->transform($arr);
52 $this->assertTrue($raised);
57 $with = $this->split_string->transform($without);
61 $this->assertTrue($raised);
65 $std_class =
new stdClass();
66 $with = $this->split_string->transform($std_class);
70 $this->assertTrue($raised);
91 $this->assertTrue($raised);
100 $this->assertTrue($raised);
104 $std_class =
new stdClass();
109 $this->assertTrue($raised);
114 $factory = new \ILIAS\Data\Factory();
115 $valueObject =
$factory->ok(self::STRING_TO_SPLIT);
117 $resultObject = $this->split_string->applyTo($valueObject);
120 $this->assertFalse($resultObject->isError());
125 $factory = new \ILIAS\Data\Factory();
128 $resultObject = $this->split_string->applyTo($valueObject);
130 $this->assertTrue($resultObject->isError());
TestCase for SplitString transformations.
testApplyToWithValidValueReturnsAnOkResult()
testApplyToWithInvalidValueWillLeadToErrorResult()