15 protected static $labels = array(
"A",
"B",
"C");
23 protected function setUp() : void
26 $language = $this->createMock(
'\ilLanguage');
29 $this->add_label = $this->f->container()->addLabels(self::$labels);
35 $this->add_label = null;
40 $with = $this->add_label->transform(self::$test_array);
41 $this->assertEquals(self::$result_array, $with);
49 $next_with = $this->add_label->transform($with);
53 $this->assertTrue($raised);
57 $without = array(1, 2, 3, 4);
58 $with = $this->add_label->transform($without);
62 $this->assertTrue($raised);
67 $with = $this->add_label->transform($without);
71 $this->assertTrue($raised);
75 $std_class =
new stdClass();
76 $with = $this->add_label->transform($std_class);
80 $this->assertTrue($raised);
85 $add_label = $this->f->container()->addLabels(self::$labels);
86 $with = $add_label(self::$test_array);
87 $this->assertEquals(self::$result_array, $with);
92 $add_label = $this->f->container()->addLabels(self::$labels);
97 $next_with = $add_label($with);
101 $this->assertTrue($raised);
105 $without = array(1, 2, 3, 4);
106 $with = $add_label($without);
110 $this->assertTrue($raised);
114 $without =
"1, 2, 3";
115 $with = $add_label($without);
119 $this->assertTrue($raised);
123 $std_class =
new stdClass();
124 $with = $add_label($std_class);
128 $this->assertTrue($raised);
TestCase for AddLabel transformations.