HashShellTest.php 395 B

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