1 | <?php |
||
9 | class DecimalLog10Test extends PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | public function testZeroLog10() |
||
20 | |||
21 | |||
22 | /** |
||
23 | * @expectedException \DomainException |
||
24 | * @expectedExceptionMessage Decimal can't handle logarithms of negative numbers (it's only for real numbers). |
||
25 | */ |
||
26 | public function testNegativeLog10() |
||
30 | |||
31 | public function testBigNumbersLog10() |
||
38 | |||
39 | public function testLittleNumbersLog10() |
||
46 | |||
47 | public function testMediumNumbersLog10() |
||
52 | } |
||
53 |