Example #1
0
 /**
  * @test
  */
 public function getConfigurationForPropertyTest()
 {
     $testPropertyConfiguration = array('type' => 'string', 'column' => 'property_one');
     $propertyConfiguration = $this->fixture->getConfigurationForProperty('property1');
     $this->assertEquals($testPropertyConfiguration, $propertyConfiguration);
     $this->assertEmpty($this->fixture->getConfigurationForProperty('propertyNotExists'));
 }