NotificationActionTest.php 376 B

1234567891011121314151617
  1. <?php
  2. namespace Illuminate\Tests\Notifications;
  3. use Illuminate\Notifications\Action;
  4. use PHPUnit\Framework\TestCase;
  5. class NotificationActionTest extends TestCase
  6. {
  7. public function testActionIsCreatedProperly()
  8. {
  9. $action = new Action('Text', 'url');
  10. $this->assertSame('Text', $action->text);
  11. $this->assertSame('url', $action->url);
  12. }
  13. }