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

Tests working with color data object. More...

+ Inheritance diagram for ColorTest:
+ Collaboration diagram for ColorTest:

Public Member Functions

 testFullHexValue ()
 
 testShortHexValue ()
 
 testShortHexValue2 ()
 
 testRBGValue ()
 
 testWrongRBGValue ()
 
 testWrongRBGValue2 ()
 
 testWrongRBGValue3 ()
 
 testWrongRBGValue4 ()
 
 testWrongHexValue ()
 
 testWrongHexValue2 ()
 
 testWrongHexValue4 ()
 
 testDarkness ()
 
 testDarkness2 ()
 

Protected Member Functions

 setUp ()
 
 tearDown ()
 

Private Attributes

Data Factory $f
 

Detailed Description

Tests working with color data object.

Author
Nils Haagen nils..nosp@m.haag.nosp@m.en@co.nosp@m.ncep.nosp@m.ts-an.nosp@m.d-tr.nosp@m.ainin.nosp@m.g.de

Definition at line 17 of file ColorTest.php.

Member Function Documentation

◆ setUp()

ColorTest::setUp ( )
protected

Definition at line 21 of file ColorTest.php.

21  : void
22  {
23  $this->f = new Data\Factory();
24  }

◆ tearDown()

ColorTest::tearDown ( )
protected

Definition at line 26 of file ColorTest.php.

26  : void
27  {
28  $this->f = null;
29  }

◆ testDarkness()

ColorTest::testDarkness ( )

Definition at line 137 of file ColorTest.php.

137  : void
138  {
139  $v = $this->f->color('#6541f4');
140  $this->assertEquals(true, $v->isDark());
141  }

◆ testDarkness2()

ColorTest::testDarkness2 ( )

Definition at line 143 of file ColorTest.php.

143  : void
144  {
145  $v = $this->f->color('#c1f441');
146  $this->assertEquals(false, $v->isDark());
147  }

◆ testFullHexValue()

ColorTest::testFullHexValue ( )

Definition at line 31 of file ColorTest.php.

31  : void
32  {
33  $v = $this->f->color('#0fff2f');
34 
35  $this->assertEquals('#0fff2f', $v->asHex());
36  $this->assertEquals('rgb(15, 255, 47)', $v->asRGBString());
37  $this->assertEquals(array(15, 255, 47), $v->asArray());
38  $this->assertEquals(15, $v->r());
39  $this->assertEquals(255, $v->g());
40  $this->assertEquals(47, $v->b());
41  }

◆ testRBGValue()

ColorTest::testRBGValue ( )

Definition at line 59 of file ColorTest.php.

59  : void
60  {
61  $v = $this->f->color(array(15,255,47));
62  $this->assertEquals('#0fff2f', $v->asHex());
63  $this->assertEquals('rgb(15, 255, 47)', $v->asRGBString());
64  $this->assertEquals(array(15, 255, 47), $v->asArray());
65  }

◆ testShortHexValue()

ColorTest::testShortHexValue ( )

Definition at line 43 of file ColorTest.php.

43  : void
44  {
45  $v = $this->f->color('#f0f');
46  $this->assertEquals('#ff00ff', $v->asHex());
47  $this->assertEquals('rgb(255, 0, 255)', $v->asRGBString());
48  $this->assertEquals(array(255, 0, 255), $v->asArray());
49  }

◆ testShortHexValue2()

ColorTest::testShortHexValue2 ( )

Definition at line 51 of file ColorTest.php.

51  : void
52  {
53  $v = $this->f->color('f0f');
54  $this->assertEquals('#ff00ff', $v->asHex());
55  $this->assertEquals('rgb(255, 0, 255)', $v->asRGBString());
56  $this->assertEquals(array(255, 0, 255), $v->asArray());
57  }

◆ testWrongHexValue()

ColorTest::testWrongHexValue ( )

Definition at line 107 of file ColorTest.php.

References Vendor\Package\$e.

107  : void
108  {
109  try {
110  $v = $this->f->color('1234');
111  $this->assertFalse("This should not happen.");
112  } catch (InvalidArgumentException $e) {
113  $this->assertTrue(true);
114  }
115  }

◆ testWrongHexValue2()

ColorTest::testWrongHexValue2 ( )

Definition at line 117 of file ColorTest.php.

References Vendor\Package\$e.

117  : void
118  {
119  try {
120  $v = $this->f->color('#ff');
121  $this->assertFalse("This should not happen.");
122  } catch (InvalidArgumentException $e) {
123  $this->assertTrue(true);
124  }
125  }

◆ testWrongHexValue4()

ColorTest::testWrongHexValue4 ( )

Definition at line 127 of file ColorTest.php.

References Vendor\Package\$e.

127  : void
128  {
129  try {
130  $v = $this->f->color('#gg0000');
131  $this->assertFalse("This should not happen.");
132  } catch (InvalidArgumentException $e) {
133  $this->assertTrue(true);
134  }
135  }

◆ testWrongRBGValue()

ColorTest::testWrongRBGValue ( )

Definition at line 67 of file ColorTest.php.

References Vendor\Package\$e.

67  : void
68  {
69  try {
70  $v = $this->f->color(array(-1,0,0));
71  $this->assertFalse("This should not happen.");
72  } catch (InvalidArgumentException $e) {
73  $this->assertTrue(true);
74  }
75  }

◆ testWrongRBGValue2()

ColorTest::testWrongRBGValue2 ( )

Definition at line 77 of file ColorTest.php.

References Vendor\Package\$e.

77  : void
78  {
79  try {
80  $v = $this->f->color(array(256,0,0));
81  $this->assertFalse("This should not happen.");
82  } catch (InvalidArgumentException $e) {
83  $this->assertTrue(true);
84  }
85  }

◆ testWrongRBGValue3()

ColorTest::testWrongRBGValue3 ( )

Definition at line 87 of file ColorTest.php.

References Vendor\Package\$e.

87  : void
88  {
89  try {
90  $v = $this->f->color(array(1,1,'123'));
91  $this->assertFalse("This should not happen.");
92  } catch (InvalidArgumentException $e) {
93  $this->assertTrue(true);
94  }
95  }

◆ testWrongRBGValue4()

ColorTest::testWrongRBGValue4 ( )

Definition at line 97 of file ColorTest.php.

References Vendor\Package\$e.

97  : void
98  {
99  try {
100  $v = $this->f->color(array());
101  $this->assertFalse("This should not happen.");
102  } catch (InvalidArgumentException $e) {
103  $this->assertTrue(true);
104  }
105  }

Field Documentation

◆ $f

Data Factory ColorTest::$f
private

Definition at line 19 of file ColorTest.php.


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