'header', 'text' => 'View this in your browser.', 'styles' => [ 'block' => [ 'backgroundColor' => 'transparent', ], 'text' => [ 'fontColor' => '#222222', 'fontFamily' => 'Arial', 'fontSize' => '12px', 'textAlign' => 'left', ], 'link' => [ 'fontColor' => '#6cb7d4', 'textDecoration' => 'underline', ], ], ]; function testItRendersCorrectly() { $output = Header::render($this->block); $expected_result = '
Header text. link
'; $output = Footer::render($this->block); expect($output)->contains('link'); } }