php-censor/tests/PHPCensor/Helper/AnsiConverterTest.php
SimonHeimberg 7a8ed48e3d test cases inherit from PhpUnit testcase with namespeces
This name is available since phpunit 4.8.36 and 5.4.3.
2017-07-24 08:59:49 +02:00

19 lines
492 B
PHP

<?php
namespace Tests\PHPCensor\Helper;
use PHPCensor\Helper\AnsiConverter;
use PHPUnit\Framework\TestCase;
class AnsiConverterTest extends TestCase
{
public function testConvert_convertToHtml()
{
$input = "\e[31mThis is red !\e[0m";
$expectedOutput = '<span class="ansi_color_bg_black ansi_color_fg_red">This is red !</span>';
$actualOutput = AnsiConverter::convert($input);
$this->assertEquals($expectedOutput, $actualOutput);
}
}