Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class RequestLoggerFunctionTest extends TestCase |
||
8 | { |
||
9 | /** |
||
10 | * Check that the multiply method returns correct result |
||
11 | * @return void |
||
12 | */ |
||
13 | public function testMultiplyReturnsCorrectValue() |
||
14 | { |
||
15 | $this->assertSame(RequestLogger::multiply(4, 4), 16); |
||
16 | $this->assertSame(RequestLogger::multiply(2, 9), 18); |
||
17 | } |
||
18 | } |