예제 #1
0
 public function testDescribe()
 {
     $table = Mock\SDBCar::DescribeTable();
     $this->assertEquals(5, count($table), "Got: " . implode(', ', $table));
     $this->assertTrue(in_array('brand', $table));
     $this->assertTrue(in_array('colour', $table));
     $this->assertTrue(in_array('doors', $table));
 }