CcShellTest.php 399 B

12345678910111213141516171819202122
  1. <?php
  2. App::uses('CcShell', 'Tools.Console/Command');
  3. App::uses('MyCakeTestCase', 'Tools.TestSuite');
  4. class CcShellTest extends MyCakeTestCase {
  5. public $CcShell;
  6. public function setUp() {
  7. parent::setUp();
  8. $this->CcShell = new CcShell();
  9. }
  10. public function testObject() {
  11. $this->assertTrue(is_object($this->CcShell));
  12. $this->assertInstanceOf('CcShell', $this->CcShell);
  13. }
  14. //TODO
  15. }