/test/language/unclassified/test_or1.e

http://github.com/tybor/Liberty · Specman e · 70 lines · 40 code · 8 blank · 22 comment · 3 complexity · 408ca4b419eeeff30780b305105e1932 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_OR1
  5. create {}
  6. make
  7. feature {ANY}
  8. make
  9. do
  10. assert(foo_count = 0)
  11. assert(bar_count = 0)
  12. if foo or bar then
  13. end
  14. assert(foo_count = 1)
  15. assert(bar_count = 1)
  16. if bar or foo then
  17. end
  18. assert(foo_count = 2)
  19. assert(bar_count = 2)
  20. end
  21. feature {}
  22. foo_count, bar_count: INTEGER
  23. foo: BOOLEAN
  24. do
  25. foo_count := foo_count + 1
  26. Result := True
  27. end
  28. bar: BOOLEAN
  29. do
  30. bar_count := bar_count + 1
  31. end
  32. assert (b: BOOLEAN)
  33. do
  34. cpt := cpt + 1
  35. if not b then
  36. std_output.put_string("TEST_OR1: ERROR Test # ")
  37. std_output.put_integer(cpt)
  38. std_output.put_string("%N")
  39. else
  40. -- std_output.put_string("Yes%N");
  41. end
  42. end
  43. cpt: INTEGER
  44. end -- class TEST_OR1
  45. --
  46. -- ------------------------------------------------------------------------------------------------------------------------------
  47. -- Copyright notice below. Please read.
  48. --
  49. -- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License,
  50. -- as published by the Free Software Foundation; either version 2, or (at your option) any later version.
  51. -- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty
  52. -- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have
  53. -- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free
  54. -- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  55. --
  56. -- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE
  57. -- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE
  58. --
  59. -- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN
  60. --
  61. -- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
  62. -- ------------------------------------------------------------------------------------------------------------------------------