luyatests\core\components\MailTest::testLayoutWrapper PHP Method

testLayoutWrapper() public method

public testLayoutWrapper ( )
    public function testLayoutWrapper()
    {
        $mail = new Mail();
        $mail->layout = '@app/views/maillayout.php';
        $mail->setBody('CONTENT');
        $this->assertEquals('<div>CONTENT</div>', $mail->mailer->Body);
    }