Пример #1
0
 public function setUp()
 {
     $this->mockReflectionService = $this->getMock('TYPO3\\FLOW3\\Reflection\\ReflectionService');
     $this->mockObjectManager = $this->getMock('TYPO3\\FLOW3\\Object\\ObjectManagerInterface');
     $this->converter = new \TYPO3\FLOW3\Property\TypeConverter\ObjectConverter();
     $this->converter->injectReflectionService($this->mockReflectionService);
     $this->converter->injectObjectManager($this->mockObjectManager);
 }