1 package org.melati.poem.test;
2
3 import org.melati.poem.TimePoemType;
4
5 /**
6 * @author timp
7 * @since 2011/06/11
8 *
9 */
10 public class NullableTimePoemTypeTest extends NotNullableTimePoemTypeTest {
11
12 public NullableTimePoemTypeTest() {
13 }
14
15 public NullableTimePoemTypeTest(String name) {
16 super(name);
17 }
18
19 /**
20 * {@inheritDoc}
21 * @see org.melati.poem.test.SQLPoemTypeSpec#setObjectUnderTest()
22 */
23 void setObjectUnderTest() {
24 it = new TimePoemType(true);
25 }
26
27 }