You are here

public function WebhooksTest::testOutgoingCreated in Webhooks 8

Test creation of outgoing webhook.

File

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

Class

WebhooksTest
Test description.

Namespace

Drupal\Tests\webhooks\Functional

Code

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