use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Formatter\NullOutputFormatterStyle;
/**
* @author Tien Xuan Vo <tien.xuan.vo@gmail.com>
*/
class NullOutputFormatterStyleTest extends TestCase
{ public function testApply() { $style =
new NullOutputFormatterStyle();
$this->
assertSame('foo',
$style->
apply('foo'
));
} public function testSetForeground() { $style =
new NullOutputFormatterStyle();
$style->
setForeground('black'
);
$this->
assertSame('foo',
$style->
apply('foo'
));
}