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