1   package org.marketchangers.prayer;
2   
3   import junit.framework.TestCase;
4   
5   /***
6    * @author <a href="mailto:mtodd@wc-group.com">Matthew Todd</a>
7    */
8   public class PrayerCommentTest extends TestCase {
9       public void testEqualsOnDefaultObjectDoesNotThrowNPE() {
10          new PrayerComment().equals(new PrayerComment());
11      }
12  
13      public void testHashCodeOnDefaultObjectDoesNotThrowNPE() {
14          new PrayerComment().hashCode();
15      }
16  }