adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / tests / TestCase / Controller / UsersControllerTest.php
1 <?php
2 namespace App\Test\TestCase\Controller;
3
4 use App\Controller\UsersController;
5 use Cake\TestSuite\IntegrationTestCase;
6
7 /**
8  * App\Controller\UsersController Test Case
9  */
10 class UsersControllerTest extends IntegrationTestCase
11 {
12
13     /**
14      * Fixtures
15      *
16      * @var array
17      */
18     public $fixtures = [
19         'app.users'
20     ];
21
22     /**
23      * Test index method
24      *
25      * @return void
26      */
27     public function testIndex()
28     {
29         $this->markTestIncomplete('Not implemented yet.');
30     }
31
32     /**
33      * Test view method
34      *
35      * @return void
36      */
37     public function testView()
38     {
39         $this->markTestIncomplete('Not implemented yet.');
40     }
41
42     /**
43      * Test add method
44      *
45      * @return void
46      */
47     public function testAdd()
48     {
49         $this->markTestIncomplete('Not implemented yet.');
50     }
51
52     /**
53      * Test edit method
54      *
55      * @return void
56      */
57     public function testEdit()
58     {
59         $this->markTestIncomplete('Not implemented yet.');
60     }
61
62     /**
63      * Test delete method
64      *
65      * @return void
66      */
67     public function testDelete()
68     {
69         $this->markTestIncomplete('Not implemented yet.');
70     }
71 }