ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ChartDataLinesTest Class Reference

Test clipboard repository. More...

+ Inheritance diagram for ChartDataLinesTest:
+ Collaboration diagram for ChartDataLinesTest:

Public Member Functions

 testLineWidth ()
 
 testLineSteps ()
 

Protected Member Functions

 tearDown ()
 

Detailed Description

Test clipboard repository.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 26 of file ChartDataLinesTest.php.

Member Function Documentation

◆ tearDown()

ChartDataLinesTest::tearDown ( )
protected

Definition at line 28 of file ChartDataLinesTest.php.

28  : void
29  {
30  }

◆ testLineSteps()

ChartDataLinesTest::testLineSteps ( )

Definition at line 42 of file ChartDataLinesTest.php.

42  : void
43  {
44  $cd = new ilChartDataLines();
45  $cd->setLineSteps(true);
46  $this->assertEquals(
47  true,
48  $cd->getLineSteps()
49  );
50  $cd->setLineSteps(false);
51  $this->assertEquals(
52  false,
53  $cd->getLineSteps()
54  );
55  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

◆ testLineWidth()

ChartDataLinesTest::testLineWidth ( )

Definition at line 32 of file ChartDataLinesTest.php.

32  : void
33  {
34  $cd = new ilChartDataLines();
35  $cd->setLineWidth(15);
36  $this->assertEquals(
37  15,
38  $cd->getLineWidth()
39  );
40  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

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