Example #1
0
 /**
  * @test
  */
 public function getTypeForPropertyTest()
 {
     $this->assertEquals('int', $this->fixture->getTypeForProperty('property3'));
     $this->assertEquals('boolean', $this->fixture->getTypeForProperty('property6'));
     $this->assertNull($this->fixture->getTypeForProperty('propertyNotExists'));
 }