1 | <?php |
||
8 | class DecimalArccosTest extends PHPUnit_Framework_TestCase |
||
9 | { |
||
10 | public function arccosProvider() { |
||
18 | |||
19 | /** |
||
20 | * @dataProvider arccosProvider |
||
21 | */ |
||
22 | public function testSimple($nr, $answer, $digits) |
||
32 | |||
33 | /** |
||
34 | * @expectedException \DomainException |
||
35 | * @expectedExceptionMessage The arccos of this number is undefined. |
||
36 | */ |
||
37 | public function testArcosGreaterThanOne() |
||
41 | |||
42 | /** |
||
43 | * @expectedException \DomainException |
||
44 | * @expectedExceptionMessage The arccos of this number is undefined. |
||
45 | */ |
||
46 | public function testArccosFewerThanNegativeOne() |
||
50 | } |
||
51 |