1 18 package org.apache.batik.test; 19 20 26 public class AssertNullException extends AssertException { 27 public static final String ASSERTION_TYPE = "assertNull"; 28 29 32 protected Object ref, cmp; 33 34 public AssertNullException(){ 35 } 36 37 41 public void addDescription(TestReport report){ 42 } 43 44 public String getAssertionType(){ 45 return ASSERTION_TYPE; 46 } 47 } 48 | Popular Tags |