View Javadoc
1   /**
2    * 
3    */
4   package org.melati.poem.util.test;
5   
6   import junit.framework.TestCase;
7   
8   /**
9    * @author timp
10   * @since 15 Jun 2007
11   *
12   */
13  public class ClassUtilsTest extends TestCase {
14  
15    /**
16     * @param name
17     */
18    public ClassUtilsTest(String name) {
19      super(name);
20    }
21  
22    /** 
23     * {@inheritDoc}
24     * @see junit.framework.TestCase#setUp()
25     */
26    protected void setUp() throws Exception {
27      super.setUp();
28    }
29  
30    /** 
31     * {@inheritDoc}
32     * @see junit.framework.TestCase#tearDown()
33     */
34    protected void tearDown() throws Exception {
35      super.tearDown();
36    }
37  
38    /**
39     * Test method for {@link org.melati.poem.util.ClassUtils#getOneArgumentMethods(Class, String)}
40     */
41    public void testSuitableSetterMethods() {
42      
43    }
44  
45    /**
46     * Test method for {@link org.melati.poem.util.ClassUtils#getNoArgMethod}
47     */
48    public void testSuitableGetterMethods() {
49      
50    }
51  
52  }