'button', 'text' => 'Button', 'url' => 'https://example.com', 'styles' => [ 'block' => [ 'backgroundColor' => '#252525', 'borderColor' => '#363636', 'borderWidth' => '2px', 'borderRadius' => '5px', 'borderStyle' => 'solid', 'width' => '180px', 'lineHeight' => '40px', 'fontColor' => '#ffffff', 'fontFamily' => 'Source Sans Pro', 'fontSize' => '14px', 'fontWeight' => 'bold', 'textAlign' => 'center', ], ], ]; function testItRendersCorrectly() { $output = Button::render($this->block, 200); $expected_result = '
Button
'; expect($output)->equals($expected_result); } }