| 1234567891011121314151617 |
- <?php
- namespace Illuminate\Tests\Notifications;
- use Illuminate\Notifications\Action;
- use PHPUnit\Framework\TestCase;
- class NotificationActionTest extends TestCase
- {
- public function testActionIsCreatedProperly()
- {
- $action = new Action('Text', 'url');
- $this->assertSame('Text', $action->text);
- $this->assertSame('url', $action->url);
- }
- }
|