ILIAS  trunk Revision v12.0_alpha-1541-g23eaa5e013d
ILIAS\Tests\Refinery\URI\GroupTest Class Reference
+ Inheritance diagram for ILIAS\Tests\Refinery\URI\GroupTest:
+ Collaboration diagram for ILIAS\Tests\Refinery\URI\GroupTest:

Public Member Functions

 testToStringTransformationInstance ()
 
 testToSvgTransformationInstance ()
 
 testFromSvgTransformationInstance ()
 

Detailed Description

Definition at line 29 of file GroupTest.php.

Member Function Documentation

◆ testFromSvgTransformationInstance()

ILIAS\Tests\Refinery\URI\GroupTest::testFromSvgTransformationInstance ( )

Definition at line 45 of file GroupTest.php.

45 : void
46 {
47 $group = new URIGroup();
48 $transformation = $group->fromSvg();
49 $this->assertInstanceOf(FromSvgTransformation::class, $transformation);
50 }

◆ testToStringTransformationInstance()

ILIAS\Tests\Refinery\URI\GroupTest::testToStringTransformationInstance ( )

Definition at line 31 of file GroupTest.php.

31 : void
32 {
33 $group = new URIGroup();
34 $transformation = $group->toString();
35 $this->assertInstanceOf(ToStringTransformation::class, $transformation);
36 }

◆ testToSvgTransformationInstance()

ILIAS\Tests\Refinery\URI\GroupTest::testToSvgTransformationInstance ( )

Definition at line 38 of file GroupTest.php.

38 : void
39 {
40 $group = new URIGroup();
41 $transformation = $group->toSvgQrCode();
42 $this->assertInstanceOf(ToSvgQrCodeTransformation::class, $transformation);
43 }

The documentation for this class was generated from the following file: