/**
  * Test that the configured mappings are accessed
  * correctly.
  */
 public function testConfiguredMappingAccess()
 {
     $prop = new PropertyMapping();
     $prop->setMapping(array('delete_on_remove' => true, 'delete_on_update' => true, 'upload_destination' => '/tmp', 'inject_on_load' => true));
     $this->assertEquals($prop->getUploadDir(), '/tmp');
     $this->assertTrue($prop->getDeleteOnRemove());
     $this->assertTrue($prop->getInjectOnLoad());
 }
Esempio n. 2
0
 /**
  * Test that the configured mappings are accessed
  * correctly.
  */
 public function testConfiguredMappingAccess()
 {
     $object = new DummyEntity();
     $prop = new PropertyMapping('file', 'fileName');
     $prop->setMapping(array('upload_destination' => '/tmp', 'delete_on_remove' => true, 'delete_on_update' => true, 'inject_on_load' => false));
     $this->assertEquals('', $prop->getUploadDir($object));
     $this->assertEquals('/tmp', $prop->getUploadDestination());
     $this->assertEquals('file', $prop->getFilePropertyName());
     $this->assertEquals('fileName', $prop->getFileNamePropertyName());
     $this->assertTrue($prop->getDeleteOnRemove());
     $this->assertTrue($prop->getDeleteOnUpdate());
     $this->assertFalse($prop->getInjectOnLoad());
 }