1
2
3
4 package org.melati.poem.test;
5
6 import org.melati.poem.Group;
7
8
9
10
11
12 public class GroupTest extends PoemTestCase {
13
14 public GroupTest(String name) {
15 super(name);
16 }
17
18 protected void setUp() throws Exception {
19 super.setUp();
20 }
21
22 protected void tearDown() throws Exception {
23 super.tearDown();
24 }
25
26
27
28
29 public void testAssertCanReadAccessToken() {
30 }
31
32
33
34
35 public void testGroup() {
36 }
37
38
39
40
41 public void testGroupString() {
42 Group it = new Group("testers");
43
44 getDb().getGroupTable().create(it);
45 assertEquals("testers",it.getName());
46
47 it.delete();
48 }
49
50 }