CcShellTest.php 379 B

1234567891011121314151617181920
  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. $this->CcShell = new CcShell();
  8. }
  9. public function testObject() {
  10. $this->assertTrue(is_object($this->CcShell));
  11. $this->assertInstanceOf('CcShell', $this->CcShell);
  12. }
  13. //TODO
  14. }