/** tests the resetting of the options to the default ones */
 public void testResettingOptions() {
   if (!m_OptionTester.checkSetOptions()) {
     fail("Resetting of options failed");
   }
 }
Exemplo n.º 2
0
 /** tests the resetting of the options to the default ones */
 public void testResettingOptions() {
   if (m_OptionTester.getOptionHandler() != null) {
     if (!m_OptionTester.checkSetOptions()) fail("Resetting of options failed");
   }
 }
 /** tests the setting of the options */
 public void testSetOptions() {
   if (!m_OptionTester.checkSetOptions()) {
     fail("setOptions method failed.");
   }
 }
Exemplo n.º 4
0
 /** tests the setting of the options */
 public void testSetOptions() {
   if (m_OptionTester.getOptionHandler() != null) {
     if (!m_OptionTester.checkSetOptions()) fail("setOptions method failed.");
   }
 }