adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / tests / TestCase / Model / Table / UsersTableTest.php
1 <?php
2 namespace App\Test\TestCase\Model\Table;
3
4 use App\Model\Table\UsersTable;
5 use Cake\ORM\TableRegistry;
6 use Cake\TestSuite\TestCase;
7
8 /**
9  * App\Model\Table\UsersTable Test Case
10  */
11 class UsersTableTest extends TestCase
12 {
13
14     /**
15      * Test subject
16      *
17      * @var \App\Model\Table\UsersTable
18      */
19     public $Users;
20
21     /**
22      * Fixtures
23      *
24      * @var array
25      */
26     public $fixtures = [
27         'app.users'
28     ];
29
30     /**
31      * setUp method
32      *
33      * @return void
34      */
35     public function setUp()
36     {
37         parent::setUp();
38         $config = TableRegistry::exists('Users') ? [] : ['className' => UsersTable::class];
39         $this->Users = TableRegistry::get('Users', $config);
40     }
41
42     /**
43      * tearDown method
44      *
45      * @return void
46      */
47     public function tearDown()
48     {
49         unset($this->Users);
50
51         parent::tearDown();
52     }
53
54     /**
55      * Test initialize method
56      *
57      * @return void
58      */
59     public function testInitialize()
60     {
61         $this->markTestIncomplete('Not implemented yet.');
62     }
63
64     /**
65      * Test validationDefault method
66      *
67      * @return void
68      */
69     public function testValidationDefault()
70     {
71         $this->markTestIncomplete('Not implemented yet.');
72     }
73 }