/trunk/Examples/test-suite/csharp/li_std_except_runme.cs

# · C# · 24 lines · 18 code · 5 blank · 1 comment · 0 complexity · 2583e572a953a3830b9787a90a5ce12d MD5 · raw file

  1. // This test tests all the methods in the C# collection wrapper
  2. using System;
  3. using li_std_exceptNamespace;
  4. public class li_std_except_runme {
  5. public static void Main() {
  6. Test test = new Test();
  7. try { test.throw_bad_exception(); throw new Exception("throw_bad_exception failed"); } catch (ApplicationException) {}
  8. try { test.throw_domain_error(); throw new Exception("throw_domain_error failed"); } catch (ApplicationException) {}
  9. try { test.throw_exception(); throw new Exception("throw_exception failed"); } catch (ApplicationException) {}
  10. try { test.throw_invalid_argument(); throw new Exception("throw_invalid_argument failed"); } catch (ArgumentException) {}
  11. try { test.throw_length_error(); throw new Exception("throw_length_error failed"); } catch (IndexOutOfRangeException) {}
  12. try { test.throw_logic_error(); throw new Exception("throw_logic_error failed"); } catch (ApplicationException) {}
  13. try { test.throw_out_of_range(); throw new Exception("throw_out_of_range failed"); } catch (ArgumentOutOfRangeException) {}
  14. try { test.throw_overflow_error(); throw new Exception("throw_overflow_error failed"); } catch (OverflowException) {}
  15. try { test.throw_range_error(); throw new Exception("throw_range_error failed"); } catch (IndexOutOfRangeException) {}
  16. try { test.throw_runtime_error(); throw new Exception("throw_runtime_error failed"); } catch (ApplicationException) {}
  17. try { test.throw_underflow_error(); throw new Exception("throw_underflow_error failed"); } catch (OverflowException) {}
  18. }
  19. }