Example #1
0
 /**
  * @covers Cradle\Sql\AbstractSql::inspect
  */
 public function testInspect()
 {
     ob_start();
     $this->object->inspect('foobar');
     $contents = ob_get_contents();
     ob_end_clean();
     $this->assertEquals('<pre>INSPECTING Variable:</pre><pre>foobar</pre>', $contents);
 }