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