assertEquals( ComponentBody::TYPE, $json->type ); $this->assertCount( 0, $json->parameters ); } public function testUnsupportedParameterType() { $this->expectException( WhatsappTemplateComponentParameterTypeException::class ); new ComponentBody([ new ComponentParameterImage( new MediaContent( 'test','test','test' ) ), ]); } }