Example #1
0
 /**
  * Tests some config functions.
  */
 public function testConfigFunctions()
 {
     // Create new schema
     $table = new Table();
     // Check return types
     $this->assertTrue(is_array($table->attributeLabels()));
     $this->assertTrue(is_array($table->rules()));
     $this->assertTrue(is_array($table->relations()));
 }