ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
DataLinkTest Class Reference

Tests the Link Datatype. More...

+ Inheritance diagram for DataLinkTest:
+ Collaboration diagram for DataLinkTest:

Public Member Functions

 testFactory ()
 
 testValues (Link $link)
 testFactory More...
 

Protected Member Functions

 setUp ()
 

Private Attributes

ILIAS Data Factory $f
 
string $label
 
ILIAS Data URI $url
 

Detailed Description

Tests the Link Datatype.

Definition at line 11 of file LinkTest.php.

Member Function Documentation

◆ setUp()

DataLinkTest::setUp ( )
protected

Definition at line 17 of file LinkTest.php.

17  : void
18  {
19  $this->f = new ILIAS\Data\Factory();
20  $this->label = 'ILIAS Homepage';
21  $this->url = $this->f->uri('https://www.ilias.de');
22  }

◆ testFactory()

DataLinkTest::testFactory ( )

Definition at line 24 of file LinkTest.php.

24  : Link
25  {
26  $link = $this->f->link($this->label, $this->url);
27  $this->assertInstanceOf(Link::class, $link);
28  return $link;
29  }

◆ testValues()

DataLinkTest::testValues ( Link  $link)

testFactory

Definition at line 34 of file LinkTest.php.

References ILIAS\Data\Link\getLabel().

34  : void
35  {
36  $this->assertEquals(
37  $this->label,
38  $link->getLabel()
39  );
40  $this->assertEquals(
41  $this->url,
42  $link->getUrl()
43  );
44  }
+ Here is the call graph for this function:

Field Documentation

◆ $f

ILIAS Data Factory DataLinkTest::$f
private

Definition at line 13 of file LinkTest.php.

◆ $label

string DataLinkTest::$label
private

Definition at line 14 of file LinkTest.php.

◆ $url

ILIAS Data URI DataLinkTest::$url
private

Definition at line 15 of file LinkTest.php.


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