1 package org.melati.poem.test;
2
3 import org.melati.poem.StringKeyReferencePoemType;
4
5 /**
6 * @author timp
7 * @since 2012-06-15
8 *
9 */
10 public class NullableStingKeyReferencePoemTypeTest extends NotNullableStringKeyReferencePoemTypeTest {
11
12 public NullableStingKeyReferencePoemTypeTest() {
13 }
14
15 public NullableStingKeyReferencePoemTypeTest(String name) {
16 super(name);
17 }
18
19 void setObjectUnderTest() {
20 it = new StringKeyReferencePoemType(
21 getDb().getCapabilityTable(), "name",
22 true,
23 60);
24 }
25
26 }