本文整理汇总了PHP中Benchmark::get_opened_benchmarks_count方法的典型用法代码示例。如果您正苦于以下问题:PHP Benchmark::get_opened_benchmarks_count方法的具体用法?PHP Benchmark::get_opened_benchmarks_count怎么用?PHP Benchmark::get_opened_benchmarks_count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Benchmark
的用法示例。
在下文中一共展示了Benchmark::get_opened_benchmarks_count方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testBasicState
function testBasicState()
{
Benchmark::__reset();
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 0, "Benchmark gia' aperti");
$b = Benchmark::start(__CLASS__, __METHOD__);
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 1, "Nessun benchmark aperto");
$this->assertTrue(Benchmark::stop() >= 0, "Il tempo del benchmark e' inferiore a 0");
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 0, "Benchmark ancora aperto.");
$r = Benchmark::start(__CLASS__, __METHOD__);
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 1, "Benchmark aperti non 1.");
$this->assertEqual($r->get_nested_benchmarks_count(), 0, "Numero di benchmark annidati non 0");
Benchmark::start(__CLASS__, __METHOD__);
Benchmark::stop();
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 1, "Benchmark aperti non 1.");
$this->assertEqual($r->get_nested_benchmarks_count(), 1, "Numero di benchmark annidati non 1");
Benchmark::start(__CLASS__, __METHOD__);
Benchmark::stop();
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 1, "Benchmark aperti non 1.");
$this->assertEqual($r->get_nested_benchmarks_count(), 2, "Numero di benchmark annidati non 2");
Benchmark::start(__CLASS__, __METHOD__);
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 2, "Benchmark aperti non 2.");
Benchmark::stop();
$this->assertEqual(Benchmark::get_opened_benchmarks_count(), 1, "Benchmark aperti non 1.");
$this->assertEqual($r->get_nested_benchmarks_count(), 3, "Numero di benchmark annidati non 3");
Benchmark::stop();
}