controller = $this->_objectManager->create(Review::class); } /** * Test controller implements correct interfaces * */ public function testInterfaceImplementation() { $this->assertInstanceOf(HttpGetActionInterface::class, $this->controller); $this->assertInstanceOf(HttpPostActionInterface::class, $this->controller); } }