Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / symfony / console / Symfony / Component / Console / Tests / Output / NullOutputTest.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Console\Tests\Output;
13
14 use Symfony\Component\Console\Output\NullOutput;
15
16 class NullOutputTest extends \PHPUnit_Framework_TestCase
17 {
18     public function testConstructor()
19     {
20         $output = new NullOutput();
21         $output->write('foo');
22         $this->assertTrue(true, '->write() does nothing'); // FIXME
23     }
24 }