You are here

public function WebhooksTest::testIncomingCreated in Webhooks 8

Test creation of incoming webhook.

File

tests/src/Functional/WebhooksTest.php, line 172

Class

WebhooksTest
Test description.

Namespace

Drupal\Tests\webhooks\Functional

Code

public function testIncomingCreated() {
  $webhook_config = WebhookConfig::load(self::WEBHOOK_ID_INCOMING);
  $this
    ->assertInstanceOf(WebhookConfig::class, $webhook_config);
}