1   package com.sri.emo.wizard;
2   
3   import com.sri.emo.test.ExceptionTestCase;
4   
5   /***
6    * @author Michael Rimov
7    *
8    */
9   public class TestWizardException extends ExceptionTestCase {
10  
11      public void testCombinedExceptionConstructor() {
12          theException = new WizardException(message, cause);
13          super.testCombinedExceptionConstructor();
14      }
15  
16      public void testDefaultConstructor() {
17          theException = new WizardException();
18          super.testDefaultConstructor();
19      }
20  
21      public void testMessageConstructor() {
22          theException = new WizardException(message);
23          super.testMessageConstructor();
24      }
25  
26      public void testWrappedExceptionConstructor() {
27          theException = new WizardException(cause);
28      }
29  
30  }