1 | <?php |
||
10 | class DecimalTanTest extends TestCase |
||
11 | { |
||
12 | public function tanProvider() { |
||
20 | |||
21 | /** |
||
22 | * @dataProvider tanProvider |
||
23 | */ |
||
24 | public function testSimple($nr, $answer, $digits) |
||
33 | |||
34 | /** |
||
35 | * @expectedException \DomainException |
||
36 | * @expectedExceptionMessage The tangent of this 'angle' is undefined. |
||
37 | */ |
||
38 | public function testTanPiTwoDiv() |
||
43 | |||
44 | } |
||
45 |