View Javadoc
1   /**
2    * 
3    */
4   package org.melati.poem.test;
5   
6   /**
7    * @author timp
8    * @since 21 Dec 2006
9    *
10   */
11  public class NonSQLPoemTypeTest extends SQLPoemTypeSpec<Object> {
12  
13    public NonSQLPoemTypeTest() {
14    }
15  
16    public NonSQLPoemTypeTest(String name) {
17      super(name);
18    }
19  
20    void setObjectUnderTest() {
21      it = new NonSQLPoemType();
22    }
23  
24    /**
25     * Test method for {@link org.melati.poem.SQLType#quotedRaw(java.lang.Object)}.
26     */
27    public void testQuotedRaw() {
28    }
29    
30    /**
31     * Test method for {@link org.melati.poem.PoemType#toDsdType()}.
32     */
33    public void testToDsdType() {
34      assertNull(it.toDsdType()); 
35  
36    }
37  
38  }