You are here

public function SubscriptionControllerTest::testWrongToken in Feeds 8.3

@covers ::handleSubscribe

File

tests/src/Unit/Controller/SubscriptionControllerTest.php, line 166

Class

SubscriptionControllerTest
@coversDefaultClass \Drupal\feeds\Controller\SubscriptionController @group feeds

Namespace

Drupal\Tests\feeds\Unit\Controller

Code

public function testWrongToken() {
  $this
    ->expectException(NotFoundHttpException::class);
  $this->controller
    ->subscribe(1, 'not_valid_token', $this->request);
}