for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MtMail - e-mail module for Zend Framework
*
* @link http://github.com/mtymek/MtMail
* @copyright Copyright (c) 2013-2017 Mateusz Tymek
* @license BSD 2-Clause
*/
namespace MtMailTest\Template;
use MtMail\Template\SimpleHtml;
class SimpleHtmlTest extends \PHPUnit\Framework\TestCase
{
public function testGetHtmlTemplateReturnsTemplatePassedToConstructor()
$simpleHtml = new SimpleHtml('template.phtml');
$this->assertEquals('template.phtml', $simpleHtml->getHtmlTemplateName());
}