123456789101112131415161718192021222324252627 |
- <?php
- namespace Symfony\Component\Console\Tests\Helper;
- use Symfony\Component\Console\Helper\TableStyle;
- class TableStyleTest extends \PHPUnit_Framework_TestCase
- {
-
- public function testSetPadTypeWithInvalidType()
- {
- $style = new TableStyle();
- $style->setPadType('TEST');
- }
- }
|