public function SubscriptionControllerTest::testWrongTopic in Feeds 8.3
@covers ::handleSubscribe
File
- tests/
src/ Unit/ Controller/ SubscriptionControllerTest.php, line 182
Class
- SubscriptionControllerTest
- @coversDefaultClass \Drupal\feeds\Controller\SubscriptionController @group feeds
Namespace
Drupal\Tests\feeds\Unit\ControllerCode
public function testWrongTopic() {
$this->request->query
->set('hub_topic', 'http://example.com/topic');
$this
->expectException(NotFoundHttpException::class);
$this->controller
->subscribe(1, 'valid_token', $this->request);
}