"workflow/{$this->wfName}/{$this->exName}", // This title is not very clear. When we have some more examples to compare against, feel free to change/clarify. 'title' => ts('Recurring Edit: Alex, Cancelled'), 'tags' => ['preview', 'phpunit'], ]; } public function build(array &$example): void { $msg = (new CRM_Contribute_WorkflowMessage_RecurringEdit()) ->setContact(\Civi\Test::example('entity/Contact/Alex')) ->setContributionRecur(\Civi\Test::example('entity/ContributionRecur/Euro5990/cancelled')); $example['data'] = $this->toArray($msg); $example['asserts'] = [ 'default' => [ ['for' => 'subject', 'regex' => '/Recurring Contribution Update.*Alex/'], ['for' => 'text', 'regex' => '/Recurring contribution is for €5,990.99, every 2 year.s. for 24 installments/'], ], ]; } }