1 package org.melati.poem.test;
2
3 import org.melati.poem.BinaryPoemType;
4
5 /**
6 * @author timp
7 * @since 21 Dec 2006
8 *
9 */
10 public class NullableBinaryPoemTypeTest extends NotNullableBinaryPoemTypeTest {
11
12 public NullableBinaryPoemTypeTest() {
13 }
14
15 public NullableBinaryPoemTypeTest(String name) {
16 super(name);
17 }
18
19 void setObjectUnderTest() {
20 it = new BinaryPoemType(true, 20);
21 }
22
23 public void testToString() {
24 assertEquals("nullable binary(20)",it.toString());
25 }
26
27 }