Exemplo n.º 1
0
 /**
  * Tests some Config
  */
 public function testConfig()
 {
     //new Collation model
     $coll = new Collation();
     //check config
     $this->assertTrue(is_array($coll->relations()));
     $this->assertEquals('COLLATIONS', $coll->tableName());
     $this->assertEquals('COLLATION_NAME', $coll->primaryKey());
 }