ILIAS  release_8 Revision v8.24
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 10 of file ChartDataLinesTest.php.

Member Function Documentation

◆ tearDown()

ChartDataLinesTest::tearDown ( )
protected

Definition at line 12 of file ChartDataLinesTest.php.

12 : void
13 {
14 }

◆ testLineSteps()

ChartDataLinesTest::testLineSteps ( )

Definition at line 26 of file ChartDataLinesTest.php.

26 : void
27 {
28 $cd = new ilChartDataLines();
29 $cd->setLineSteps(true);
30 $this->assertEquals(
31 true,
32 $cd->getLineSteps()
33 );
34 $cd->setLineSteps(false);
35 $this->assertEquals(
36 false,
37 $cd->getLineSteps()
38 );
39 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

◆ testLineWidth()

ChartDataLinesTest::testLineWidth ( )

Definition at line 16 of file ChartDataLinesTest.php.

16 : void
17 {
18 $cd = new ilChartDataLines();
19 $cd->setLineWidth(15);
20 $this->assertEquals(
21 15,
22 $cd->getLineWidth()
23 );
24 }

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