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