1
2
3
4 package org.melati.poem.test;
5
6 import org.melati.poem.Capability;
7
8
9
10
11
12
13 public class CapabilityTest extends PoemTestCase {
14
15 public CapabilityTest(String name) {
16 super(name);
17 }
18
19 protected void setUp() throws Exception {
20 super.setUp();
21 }
22
23 protected void tearDown() throws Exception {
24 super.tearDown();
25 }
26
27
28
29
30 public void testAssertCanReadAccessToken() {
31
32 }
33
34
35
36
37 public void testToString() {
38
39 }
40
41
42
43
44 public void testCapability() {
45
46 }
47
48
49
50
51 public void testCapabilityString() {
52 Capability c = new Capability("capability");
53 assertEquals("capability",c.getName());
54 c = null;
55 }
56
57 }