IndexShellTest.php 403 B

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