Example #1
0
 /**
  * Initialize
  */
 public function __construct()
 {
     $this->app = new \Bullet\App();
     $this->objectManager = GeneralUtility::makeInstance('Cundd\\Rest\\ObjectManager');
     $this->requestFactory = $this->objectManager->getRequestFactory();
     $this->responseFactory = $this->objectManager->getResponseFactory();
     self::$sharedDispatcher = $this;
 }
Example #2
0
 /**
  * @test
  */
 public function getResponseFactoryTest()
 {
     $object = $this->fixture->getResponseFactory();
     $this->assertInstanceOf('Cundd\\Rest\\ResponseFactoryInterface', $object);
     $this->assertInstanceOf('Cundd\\Rest\\ResponseFactory', $object);
 }