Esempio n. 1
0
 /** @test */
 public function TestMapping()
 {
     /*//
     	checks that the property map was able to rename the properties when they
     	were created on this new object.
     	//*/
     $Object = new RegionTest($this->Input);
     foreach (RegionTest::$PropertyMap as $Old => $New) {
         $this->AssertFalse(property_exists($Object, $Old));
         $this->AssertTrue(property_exists($Object, Object::__get_typecasted_property_name($New)));
     }
     return;
 }