-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGroupTest.php
More file actions
55 lines (47 loc) · 782 Bytes
/
GroupTest.php
File metadata and controls
55 lines (47 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* Group Test Case
*
* @author Kohei Teraguchi <kteraguchi@commonsnet.org>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
*/
App::uses('Group', 'Groups.Model');
/**
* Summary for Group Test Case
*/
class GroupTest extends CakeTestCase {
/**
* Fixtures
*
* @var array
*/
public $fixtures = array(
'plugin.groups.group',
);
/**
* setUp method
*
* @return void
*/
public function setUp() {
parent::setUp();
$this->Group = ClassRegistry::init('Groups.Group');
}
/**
* tearDown method
*
* @return void
*/
public function tearDown() {
unset($this->Group);
parent::tearDown();
}
/**
* testIndex method
*
* @return void
*/
public function testIndex() {
}
}