public function testSimpleCreateEntity()
 {
     include TESTS_ROOT_DIR . '/data/__TestEntityClass.php';
     $this->factory->setBeanToEntityClassMappings(array('testBean' => '__TestEntityClass'));
     $entity = $this->factory->simpleCreateEntity(array('beanName' => 'testBean'));
     $this->assertInstanceOf('__TestEntityClass', $entity);
 }