Simple PHPUnit tests

This commit is contained in:
RainLoop Team 2016-05-20 22:02:39 +03:00
parent 72bf212f67
commit 2ed88f5d27
9 changed files with 85 additions and 7 deletions

View file

@ -0,0 +1,21 @@
<?php
class HtmlUtilsTest extends PHPUnit_Framework_TestCase
{
public function testCommon()
{
$this->assertTrue(true);
$this->assertTrue(class_exists('\\RainLoop\\Api'));
$this->assertTrue(class_exists('\\MailSo\\Base\\HtmlUtils'));
}
public function testClearHtml()
{
$i = 0;
while (++$i < 3)
{
$this->assertEquals(file_get_contents(TEST_DATA_FOLDER."/html/{$i}-ok.html"),
\MailSo\Base\HtmlUtils::ClearHtmlSimple(file_get_contents(TEST_DATA_FOLDER."/html/{$i}.html"), false, false, false));
}
}
}