1 | <?php |
||
9 | class DecimalSqrtTest extends PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | public function testIntegerSqrt() |
||
20 | |||
21 | public function testNearZeroSqrt() |
||
26 | |||
27 | /** |
||
28 | * @expectedException \DomainException |
||
29 | * @expectedExceptionMessage Decimal can't handle square roots of negative numbers (it's only for real numbers). |
||
30 | */ |
||
31 | public function testFiniteNegativeSqrt() |
||
35 | |||
36 | public function testPositiveInfiniteSqrt() |
||
41 | |||
42 | /** |
||
43 | * @expectedException \DomainException |
||
44 | * @expectedExceptionMessage Decimal can't handle square roots of negative numbers (it's only for real numbers). |
||
45 | */ |
||
46 | public function testNegativeInfiniteSqrt() |
||
51 | } |
||
52 |