| 1 | <?php |
||
| 8 | class InfiniteDecimalTanTest extends PHPUnit_Framework_TestCase |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @expectedException \DomainException |
||
| 12 | * @expectedExceptionMessage Tangent function hasn't limit in the positive infinite. |
||
| 13 | */ |
||
| 14 | public function testFinitePositiveInfiniteTan() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @expectedException \DomainException |
||
| 21 | * @expectedExceptionMessage Tangent function hasn't limit in the negative infinite. |
||
| 22 | */ |
||
| 23 | public function testFiniteNegativeInfiniteTan() |
||
| 27 | } |
||
| 28 |