public function testCreateConfiggedObjectWithCustomConstructorArgs()
 {
     // need to make sure that even if the config defines some constructor params,
     // that we take our passed in constructor args instead
     $injector = new Injector(array('locator' => 'InjectorTestConfigLocator'));
     $item = $injector->create('ConfigConstructor', 'othervalue');
     $this->assertEquals($item->property, 'othervalue');
 }