1 | <?php |
||
20 | class PaymentSlipFpdfTest extends \PHPUnit_Framework_TestCase |
||
21 | { |
||
22 | /** |
||
23 | * Tests the displayImage method |
||
24 | * |
||
25 | * @return void |
||
26 | * @covers ::displayImage |
||
27 | */ |
||
28 | public function testDisplayImage() |
||
34 | |||
35 | /** |
||
36 | * Tests the setFont method |
||
37 | * |
||
38 | * @return void |
||
39 | * @covers ::setFont |
||
40 | */ |
||
41 | public function testSetFont() |
||
47 | |||
48 | /** |
||
49 | * Tests the setBackground method |
||
50 | * |
||
51 | * @return void |
||
52 | * @covers ::setBackground |
||
53 | */ |
||
54 | public function testSetBackground() |
||
60 | |||
61 | /** |
||
62 | * Tests the setPosition method |
||
63 | * |
||
64 | * @return void |
||
65 | * @covers ::setPosition |
||
66 | */ |
||
67 | public function testSetPosition() |
||
73 | |||
74 | /** |
||
75 | * Tests the createCell method |
||
76 | * |
||
77 | * @return void |
||
78 | * @covers ::createCell |
||
79 | */ |
||
80 | public function testCreateCell() |
||
86 | |||
87 | /** |
||
88 | * Tests the convertColor2Rgb method |
||
89 | * |
||
90 | * @return void |
||
91 | * @covers ::convertColor2Rgb |
||
92 | * @covers ::hex2RGB |
||
93 | */ |
||
94 | public function testConvertColor2Rgb() |
||
100 | } |
||
101 |