|
@@ -0,0 +1,20 @@
|
|
|
|
|
+<?php
|
|
|
|
|
+
|
|
|
|
|
+App::uses('FolderSyncShell', 'Tools.Console/Command');
|
|
|
|
|
+App::uses('MyCakeTestCase', 'Tools.TestSuite');
|
|
|
|
|
+
|
|
|
|
|
+class FolderSyncShellTest extends MyCakeTestCase {
|
|
|
|
|
+
|
|
|
|
|
+ public $FolderSyncShell;
|
|
|
|
|
+
|
|
|
|
|
+ public function setUp() {
|
|
|
|
|
+ $this->FolderSyncShell = new FolderSyncShell();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public function testObject() {
|
|
|
|
|
+ $this->assertTrue(is_object($this->FolderSyncShell));
|
|
|
|
|
+ $this->assertInstanceOf('FolderSyncShell', $this->FolderSyncShell);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ //TODO
|
|
|
|
|
+}
|