testBakeShellTest.php 666 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace App\Test\TestCase\Shell;
  3. use App\Shell\ArticlesShell;
  4. use Cake\TestSuite\TestCase;
  5. /**
  6. * App\Shell\ArticlesShell Test Case
  7. */
  8. class ArticlesShellTest extends TestCase {
  9. /**
  10. * setUp method
  11. *
  12. * @return void
  13. */
  14. public function setUp() {
  15. parent::setUp();
  16. $this->io = $this->getMock('Cake\Console\ConsoleIo');
  17. $this->Articles = new ArticlesShell($this->io);
  18. }
  19. /**
  20. * tearDown method
  21. *
  22. * @return void
  23. */
  24. public function tearDown() {
  25. unset($this->Articles);
  26. parent::tearDown();
  27. }
  28. /**
  29. * Test initial setup
  30. *
  31. * @return void
  32. */
  33. public function testInitialization() {
  34. $this->markTestIncomplete('Not implemented yet.');
  35. }
  36. }