| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * CakePHP : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP Project
- * @since 3.6.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Console;
- use Cake\Console\Command;
- use Cake\ORM\Locator\TableLocator;
- use Cake\ORM\Table;
- use Cake\TestSuite\TestCase;
- use TestApp\Command\ExampleCommand;
- /**
- * Test case for Console\Command
- */
- class CommandTest extends TestCase
- {
- /**
- * test orm locator is setup
- *
- * @return void
- */
- public function testConstructorSetsLocator()
- {
- $command = new Command();
- $result = $command->getTableLocator();
- $this->assertInstanceOf(TableLocator::class, $result);
- }
- /**
- * test loadModel is configured properly
- *
- * @return void
- */
- public function testConstructorLoadModel()
- {
- $command = new Command();
- $command->loadModel('Comments');
- $this->assertInstanceOf(Table::class, $command->Comments);
- }
- /**
- * Test name inflection
- *
- * @return void
- */
- public function testNameInflection()
- {
- $command = new ExampleCommand();
- $this->assertSame('Example', $command->getName());
- }
- }
|