HashShellTest.php 415 B

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