Esempio n. 1
0
 /**
  * Tests Factory::register
  *
  * @depends testRegisterExistingCheck
  */
 public function testRegisterExistingCheckForce()
 {
     Factory::register('check', 'sizemin', '\\phpbu\\App\\phpbuAppFactoryTestCheck', true);
     $factory = new Factory();
     $dummy = $factory->create('check', 'sizemin');
     $this->assertEquals(get_class($dummy), 'phpbu\\App\\phpbuAppFactoryTestCheck', 'Factory should create dummy object');
 }