Tests working with color data object.
More...
◆ setUp()
Definition at line 21 of file ColorTest.php.
23 $this->f =
new Data\Factory();
◆ tearDown()
◆ testDarkness()
ColorTest::testDarkness |
( |
| ) |
|
Definition at line 137 of file ColorTest.php.
139 $v = $this->f->color(
'#6541f4');
140 $this->assertEquals(
true, $v->isDark());
◆ testDarkness2()
ColorTest::testDarkness2 |
( |
| ) |
|
Definition at line 143 of file ColorTest.php.
145 $v = $this->f->color(
'#c1f441');
146 $this->assertEquals(
false, $v->isDark());
◆ testFullHexValue()
ColorTest::testFullHexValue |
( |
| ) |
|
Definition at line 31 of file ColorTest.php.
33 $v = $this->f->color(
'#0fff2f');
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());
◆ testRBGValue()
ColorTest::testRBGValue |
( |
| ) |
|
Definition at line 59 of file ColorTest.php.
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());
◆ testShortHexValue()
ColorTest::testShortHexValue |
( |
| ) |
|
Definition at line 43 of file ColorTest.php.
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());
◆ testShortHexValue2()
ColorTest::testShortHexValue2 |
( |
| ) |
|
Definition at line 51 of file ColorTest.php.
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());
◆ testWrongHexValue()
ColorTest::testWrongHexValue |
( |
| ) |
|
Definition at line 107 of file ColorTest.php.
References Vendor\Package\$e.
110 $v = $this->f->color(
'1234');
111 $this->assertFalse(
"This should not happen.");
113 $this->assertTrue(
true);
◆ testWrongHexValue2()
ColorTest::testWrongHexValue2 |
( |
| ) |
|
Definition at line 117 of file ColorTest.php.
References Vendor\Package\$e.
120 $v = $this->f->color(
'#ff');
121 $this->assertFalse(
"This should not happen.");
123 $this->assertTrue(
true);
◆ testWrongHexValue4()
ColorTest::testWrongHexValue4 |
( |
| ) |
|
Definition at line 127 of file ColorTest.php.
References Vendor\Package\$e.
130 $v = $this->f->color(
'#gg0000');
131 $this->assertFalse(
"This should not happen.");
133 $this->assertTrue(
true);
◆ testWrongRBGValue()
ColorTest::testWrongRBGValue |
( |
| ) |
|
Definition at line 67 of file ColorTest.php.
References Vendor\Package\$e.
70 $v = $this->f->color(array(-1,0,0));
71 $this->assertFalse(
"This should not happen.");
73 $this->assertTrue(
true);
◆ testWrongRBGValue2()
ColorTest::testWrongRBGValue2 |
( |
| ) |
|
Definition at line 77 of file ColorTest.php.
References Vendor\Package\$e.
80 $v = $this->f->color(array(256,0,0));
81 $this->assertFalse(
"This should not happen.");
83 $this->assertTrue(
true);
◆ testWrongRBGValue3()
ColorTest::testWrongRBGValue3 |
( |
| ) |
|
Definition at line 87 of file ColorTest.php.
References Vendor\Package\$e.
90 $v = $this->f->color(array(1,1,
'123'));
91 $this->assertFalse(
"This should not happen.");
93 $this->assertTrue(
true);
◆ testWrongRBGValue4()
ColorTest::testWrongRBGValue4 |
( |
| ) |
|
Definition at line 97 of file ColorTest.php.
References Vendor\Package\$e.
100 $v = $this->f->color(array());
101 $this->assertFalse(
"This should not happen.");
103 $this->assertTrue(
true);
◆ $f
The documentation for this class was generated from the following file: