| 1 | <?php |
||
| 8 | class DecimalSqrtTest extends TestCase |
||
| 9 | { |
||
| 10 | public function testIntegerSqrt() |
||
| 19 | |||
| 20 | public function testNearZeroSqrt() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @expectedException \DomainException |
||
| 28 | * @expectedExceptionMessage Decimal can't handle square roots of negative numbers (it's only for real numbers). |
||
| 29 | */ |
||
| 30 | public function testFiniteNegativeSqrt() |
||
| 34 | } |
||
| 35 |