You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
/* * @copyright NetMonsters <team@netmonsters.ru> * @link http://netmonsters.ru * @package Majestic * @subpackage UnitTests * @since 2011-10-28 * * Unit tests for CommandProfiler class */
require_once dirname(__FILE__) . '/../../../util/profiler/CommandProfiler.php';
class CommandProfilerTest extends PHPUnit_Framework_TestCase {
private $profiler;
public function setUp() { $this->profiler = new CommandProfiler('method', 'exec'); $this->profiler->end(); }
public function testGetEllapsed() { $this->assertGreaterThan(0, $this->profiler->getElapsed()); }
public function testGetType() { $this->assertEquals('method', $this->profiler->getType()); $this->assertNotEquals('argument', $this->profiler->getType()); }
public function testGetCommand() { $this->assertEquals('exec', $this->profiler->getCommand()); $this->assertNotEquals('grep', $this->profiler->getCommand()); } }
|