/test/language/exceptions/test_exceptions19.e

http://github.com/tybor/Liberty · Specman e · 59 lines · 32 code · 5 blank · 22 comment · 0 complexity · ced165eefed0d9508999acf39cbe675d MD5 · raw file

  1. -- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries.
  2. -- See the Copyright notice at the end of this file.
  3. --
  4. class TEST_EXCEPTIONS19
  5. -- From: alanz@ElectroSolv.co.za (Alan Zimmerman)
  6. insert
  7. EXCEPTIONS
  8. create {}
  9. make
  10. feature {ANY}
  11. make
  12. local
  13. sub1: AUX_EXCEPTION19SUB; sub2: AUX_EXCEPTION19SUB; counter: INTEGER
  14. do
  15. create {AUX_EXCEPTION19SUB1} sub1.make
  16. create {AUX_EXCEPTION19SUB2} sub2.make
  17. inspect
  18. counter
  19. when 0 then
  20. call_sub(sub1)
  21. when 1 then
  22. call_sub(sub2)
  23. else
  24. end
  25. rescue
  26. counter := counter + 1
  27. check
  28. counter.in_range(1, 2)
  29. end
  30. retry
  31. end
  32. call_sub (sub: AUX_EXCEPTION19SUB)
  33. do
  34. sub.cause_exception
  35. end
  36. end -- class TEST_EXCEPTIONS19
  37. --
  38. -- ------------------------------------------------------------------------------------------------------------------------------
  39. -- Copyright notice below. Please read.
  40. --
  41. -- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License,
  42. -- as published by the Free Software Foundation; either version 2, or (at your option) any later version.
  43. -- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty
  44. -- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have
  45. -- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free
  46. -- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  47. --
  48. -- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE
  49. -- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE
  50. --
  51. -- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN
  52. --
  53. -- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
  54. -- ------------------------------------------------------------------------------------------------------------------------------