Update test case names

This commit is contained in:
Marcus Moore 2023-03-22 12:41:30 -07:00
parent 28ced46b9d
commit b396f2bed3
No known key found for this signature in database

View file

@ -11,9 +11,9 @@ use Illuminate\Notifications\AnonymousNotifiable;
use Illuminate\Support\Facades\Notification;
use Tests\TestCase;
class AssetCheckoutSlackNotificationTest extends TestCase
class AssetCheckoutWebhookNotificationTest extends TestCase
{
public function testNotificationSentToSlackWhenAssetCheckedOutToUserAndSlackNotificationEnabled()
public function testNotificationSentToWebhookWhenAssetCheckedOutToUserAndWebhookNotificationEnabled()
{
Notification::fake();
@ -35,7 +35,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
);
}
public function testNotificationSentToSlackWhenAssetCheckedOutToAssetAndSlackNotificationEnabled()
public function testNotificationSentToWebhookWhenAssetCheckedOutToAssetAndWebhookNotificationEnabled()
{
Notification::fake();
@ -57,7 +57,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
);
}
public function testDoesNotSendNotificationViaSlackIfWebHookEndpointIsNotSetWhenCheckingOutAssetToAsset()
public function testDoesNotSendNotificationViaWebhookIfWebHookEndpointIsNotSetWhenCheckingOutAssetToAsset()
{
Notification::fake();
@ -72,7 +72,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
);
}
public function testNotificationSentToSlackWhenAssetCheckedOutToLocationAndSlackNotificationEnabled()
public function testNotificationSentToWebhookWhenAssetCheckedOutToLocationAndWebhookNotificationEnabled()
{
Notification::fake();
@ -94,7 +94,7 @@ class AssetCheckoutSlackNotificationTest extends TestCase
);
}
public function testDoesNotSendNotificationViaSlackIfWebHookEndpointIsNotSetWhenCheckingOutAssetToLocation()
public function testDoesNotSendNotificationViaWebhookIfWebHookEndpointIsNotSetWhenCheckingOutAssetToLocation()
{
Notification::fake();