/test/language/unclassified/test_pre_once5.e

http://github.com/tybor/Liberty · Specman e · 60 lines · 26 code · 6 blank · 28 comment · 0 complexity · 3224a456b40df6a29f69c26205d47872 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_PRE_ONCE5
  5. inherit
  6. EIFFELTEST_TOOLS
  7. redefine default_rescue
  8. end
  9. insert
  10. EXCEPTIONS
  11. --SZ:224:
  12. -- OK from debug_check to invariant_check
  13. -- bug from ensure_check to boost
  14. --
  15. -- In fact, the bug is due to precomputed once sometime accessed thru
  16. -- the standard routine as if it were not precomputed (flag is checked).
  17. redefine default_rescue
  18. end
  19. create {}
  20. make
  21. feature {ANY}
  22. make
  23. local
  24. aux: AUX_PRE_ONCE5
  25. do
  26. -- This call simply calls raise("Some string")
  27. create aux.make
  28. end
  29. default_rescue
  30. do
  31. assert(is_developer_exception)
  32. assert(developer_exception_name /= Void)
  33. assert(("Some string").is_equal(developer_exception_name))
  34. die(exit_success_code)
  35. end
  36. end -- class TEST_PRE_ONCE5
  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. -- ------------------------------------------------------------------------------------------------------------------------------