namespace Symfony\Component\Mime\Tests\Encoder;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Mime\Encoder\QpMimeHeaderEncoder;
class QpMimeHeaderEncoderTest extends TestCase
{ public function testNameIsQ() { $encoder =
new QpMimeHeaderEncoder();
$this->
assertEquals('Q',
$encoder->
getName());
} public function testSpaceAndTabNeverAppear() { /* -- RFC 2047, 4.
Only a subset of the printable ASCII characters may be used in
'encoded-text'. Space and tab characters are not allowed, so that
the beginning and end of an 'encoded-word' are obvious.
*/