We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 20 | class GraphDumpSchemaCommandTest extends TestCase |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var Command |
||
| 24 | */ |
||
| 25 | private $command; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var CommandTester |
||
| 29 | */ |
||
| 30 | private $commandTester; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | private $cacheDir; |
||
| 36 | |||
| 37 | public function setUp() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param $format |
||
| 52 | * @param bool $withFormatOption |
||
| 53 | * @dataProvider formatDataProvider |
||
| 54 | */ |
||
| 55 | public function testDump($format, $withFormatOption = true) |
||
| 72 | |||
| 73 | /** |
||
| 74 | * @expectedException \InvalidArgumentException |
||
| 75 | * @expectedExceptionMessage Unknown format "fake". |
||
| 76 | */ |
||
| 77 | public function testInvalidFormat() |
||
| 84 | |||
| 85 | public function formatDataProvider() |
||
| 93 | } |
||
| 94 |