@@ -6,18 +6,18 @@ |
||
6 | 6 | class PhpQuickProfilerTest extends PHPUnit_Framework_TestCase |
7 | 7 | { |
8 | 8 | |
9 | - public function __construct() |
|
10 | - { |
|
11 | - } |
|
9 | + public function __construct() |
|
10 | + { |
|
11 | + } |
|
12 | 12 | |
13 | - public function testConstruct() |
|
14 | - { |
|
15 | - $console = new Console(); |
|
16 | - $startTime = microtime(true); |
|
13 | + public function testConstruct() |
|
14 | + { |
|
15 | + $console = new Console(); |
|
16 | + $startTime = microtime(true); |
|
17 | 17 | |
18 | - $profiler = new PhpQuickProfiler($console, null, $startTime); |
|
18 | + $profiler = new PhpQuickProfiler($console, null, $startTime); |
|
19 | 19 | |
20 | - $this->assertAttributeSame($console, 'console', $profiler); |
|
21 | - $this->assertAttributeEquals($startTime, 'startTime', $profiler); |
|
22 | - } |
|
20 | + $this->assertAttributeSame($console, 'console', $profiler); |
|
21 | + $this->assertAttributeEquals($startTime, 'startTime', $profiler); |
|
22 | + } |
|
23 | 23 | } |