* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer; use Composer\Console\HtmlOutputFormatter; class HtmlOutputFormatterTest extends \PHPUnit_Framework_TestCase { public function testFormatting() { $formatter = new HtmlOutputFormatter; return $this->assertEquals( 'Reading composer.json of https://github.com/ccqgithub/sherry-php (master)', $formatter->format('Reading composer.json of https://github.com/ccqgithub/sherry-php (master)') ); } }