| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace Illuminate\Tests\Notifications;
- use Illuminate\Notifications\Messages\SimpleMessage as Message;
- use PHPUnit\Framework\TestCase;
- class NotificationMessageTest extends TestCase
- {
- public function testLevelCanBeRetrieved()
- {
- $message = new Message;
- $this->assertSame('info', $message->level);
- $message = new Message;
- $message->level('error');
- $this->assertSame('error', $message->level);
- }
- public function testMessageFormatsMultiLineText()
- {
- $message = new Message;
- $message->with('
- This is a
- single line of text.
- ');
- $this->assertSame('This is a single line of text.', $message->introLines[0]);
- $message = new Message;
- $message->with([
- 'This is a',
- 'single line of text.',
- ]);
- $this->assertSame('This is a single line of text.', $message->introLines[0]);
- }
- }
|