/** Test getting the products table */
 public function testGetTable()
 {
     $products = $this->dbi->getTable("products");
     $products2 = $this->dbi->getTable("Products");
     $this->assertEquals($products, $products2, 0, "Expected getTable() to be case-insensitive.");
 }