1 61 62 package org.jaxen; 63 64 65 import junit.framework.TestCase; 66 67 68 72 public class UnsupportedAxisExceptionTest extends TestCase { 73 74 public UnsupportedAxisExceptionTest(String name) { 75 super(name); 76 } 77 78 public void testMessageIsNonNull() { 79 80 UnsupportedAxisException ex = new UnsupportedAxisException("Hello"); 81 assertEquals("Hello", ex.getMessage()); 82 83 } 84 85 86 } 87 | Popular Tags |