| 1 | <?php |
||
| 7 | class ListCommandTest extends TestCase |
||
| 8 | { |
||
| 9 | const NONEXISTENT_VENDOR = 'FAKE_VENDOR'; |
||
| 10 | const MODULE_OCCURENCE_CHECK = 'Magento_Catalog'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Test whether the $moduleList property is filled |
||
| 14 | */ |
||
| 15 | public function testBasicList() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Sanity test to check whether Magento_Core occurs in the output |
||
| 24 | */ |
||
| 25 | public function testMagentoCatalogOccurs() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Test whether we can filter on vendor (by checking a non-existent vendor, we should get an empty list) |
||
| 32 | */ |
||
| 33 | public function testVendorList() |
||
| 41 | } |
||
| 42 |