Example #1
0
 public function testQueriesLogger()
 {
     $this->logger->startQuery('q1');
     $this->logger->stopQuery();
     $this->logger->startQuery('q2');
     $this->logger->stopQuery();
     $r = $this->logger->queries();
     $this->assertEquals('q1', $r[0]['query']);
     $this->assertTrue(is_float($r[0]['time']));
     $this->assertEquals('q2', $r[1]['query']);
     $this->assertTrue(is_float($r[1]['time']));
 }