1 package org.melati.poem.test;
2
3 import org.melati.poem.LongPoemType;
4
5 /**
6 * @author timp
7 * @since 21 Dec 2006
8 *
9 */
10 public class NullableLongPoemTypeTest extends NotNullableLongPoemTypeTest {
11
12 public NullableLongPoemTypeTest() {
13 }
14
15 public NullableLongPoemTypeTest(String name) {
16 super(name);
17 }
18
19 void setObjectUnderTest() {
20 it = new LongPoemType(true);
21 }
22
23 }