1 package org.melati.poem.test;
2
3 import org.melati.poem.Searchability;
4
5 import junit.framework.TestCase;
6
7 /**
8 * @author timp
9 * @since 27 Feb 2007
10 *
11 */
12 public class SearchabilityTest extends TestCase {
13
14 public SearchabilityTest(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 * Test method for {@link org.melati.poem.Searchability#forIndex(int)}.
28 */
29 public void testForIndex() {
30
31 }
32
33 /**
34 * Test method for {@link org.melati.poem.Searchability#count()}.
35 */
36 public void testCount() {
37
38 }
39
40 /**
41 * Test method for {@link org.melati.poem.Searchability#named(java.lang.String)}.
42 */
43 public void testNamed() {
44
45 }
46
47 /**
48 * Test method for {@link org.melati.poem.Searchability#toString()}.
49 */
50 public void testToString() {
51 assertEquals("primary/0",Searchability.named("primary").toString());
52
53 }
54
55 /**
56 * Test method for {@link org.melati.poem.Searchability#getIndex()}.
57 */
58 public void testGetIndex() {
59
60 }
61
62 /**
63 * Test method for {@link org.melati.poem.Searchability#getName()}.
64 */
65 public void testGetName() {
66
67 }
68
69 }