1 package org.melati.poem.test;
2
3 import org.melati.poem.StringPoemType;
4
5 /**
6 * @author timp
7 * @since 21 Dec 2006
8 *
9 */
10 public class NotNullableUnlimitedStringPoemTypeTest extends SizedAtomPoemTypeSpec<String> {
11
12 /**
13 *
14 */
15 public NotNullableUnlimitedStringPoemTypeTest() {
16 }
17
18 /**
19 * @param name
20 */
21 public NotNullableUnlimitedStringPoemTypeTest(String name) {
22 super(name);
23 }
24
25 /**
26 * {@inheritDoc}
27 * @see org.melati.poem.test.SQLPoemTypeSpec#setObjectUnderTest()
28 */
29 void setObjectUnderTest() {
30 it = new StringPoemType(false, -1);
31 }
32
33 }