php-tools/tests/ActionQuotedPrintableEncodeTest.php
2013-07-25 13:25:26 -04:00

9 lines
233 B
PHP

<?php
class ActionQuotedPrintableEncodeTest extends PHPUnit_Framework_TestCase {
function testDecode() {
$action = new ActionQuotedPrintableEncode('a=b');
$this->assertEquals('a=3Db', $action->decode());
}
}