123456789101112131415161718192021222324252627 |
- <?php
- namespace CMText\RichContent\Templates\Whatsapp;
- use CMText\RichContent\Messages\MediaContent;
- use PHPUnit\Framework\TestCase;
- class ComponentParameterTextTest extends TestCase
- {
- public function test__construct()
- {
- $component = new ComponentParameterText('the text');
- $json = json_decode(json_encode($component));
- $this->assertEquals(
- ComponentParameterText::TYPE,
- $json->type
- );
- $this->assertObjectHasAttribute(
- 'text',
- $json
- );
- }
- }
|