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