FolderSyncShellTest.php 443 B

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