16 $this->f =
new Transformation\Factory();
26 $add_label = $this->f->addLabels(array(
"A",
"B",
"C"));
27 $this->assertInstanceOf(
Transformation\Transformation::class, $add_label);
32 $split_string = $this->f->splitString(
"#");
33 $this->assertInstanceOf(
Transformation\Transformation::class, $split_string);
38 $custom = $this->f->custom(
function () {
40 $this->assertInstanceOf(
Transformation\Transformation::class, $custom);
45 $data = $this->f->toData(
'password');
52 $data = $this->f->toData(
'no_such_type');
53 $this->assertFalse(
"This should not happen");
55 $this->assertTrue(
true);