Ejemplo n.º 1
0
 /**
  * @test
  */
 public function getFieldValues()
 {
     $enumValues = $this->databaseConnection->getFieldValues('types', 'enum');
     $setValues = $this->databaseConnection->getFieldValues('types', 'set');
     $exceptedEnum = array('one', 'two', 'no_value');
     $exceptedSet = array('some', 'value_here', 'hello');
     $this->assertEquals($exceptedEnum, $enumValues);
     $this->assertEquals($exceptedSet, $setValues);
 }