Example #1
0
 /**
  * @test Profiler::In
  * @test Profiler::Out
  *
  * @since 1.9
  */
 public function testInOut()
 {
     Profiler::reset();
     $this->assertInstanceOf('\\ProfilerStub', Profiler::In('Lala'));
     $this->assertInstanceOf('\\ProfilerStub', Profiler::Out('Lala'));
     $this->assertInstanceOf('\\ProfilerStub', Profiler::In('Lila', true));
     $this->assertInstanceOf('\\ProfilerStub', Profiler::Out('Lila', true));
 }