IndentShellTest.php 411 B

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