123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace CMText\RichContent\Templates\Whatsapp;
- use CMText\RichContent\Messages\MediaContent;
- use PHPUnit\Framework\TestCase;
- class ComponentParameterImageTest extends TestCase
- {
- public function test__construct()
- {
- $component = new ComponentParameterImage(
- new MediaContent(
- 'image name',
- 'https://location',
- 'image/png'
- )
- );
- $json = json_decode(json_encode($component));
- $this->assertEquals(
- ComponentParameterImage::TYPE,
- $json->type
- );
- $this->assertObjectHasAttribute(
- 'media',
- $json
- );
- }
- }
|