/test/lib/storage/collection/test_array5.e

http://github.com/tybor/Liberty · Specman e · 67 lines · 40 code · 5 blank · 22 comment · 1 complexity · 3bb7b9f8244d64d8d4d7c0bda44ce6ca 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_ARRAY5
  5. create {}
  6. make
  7. feature {ANY}
  8. make
  9. local
  10. a: ARRAY[INTEGER_8]
  11. do
  12. a := {ARRAY[INTEGER_8] 1, << 1 >> }
  13. assert(a.lower = 1)
  14. a := {ARRAY[INTEGER_8] 1, << 1, 2, 3, 4 >> }
  15. assert(a.lower = 1)
  16. assert(a.upper = 4)
  17. a.remove_first
  18. assert(a.lower = 2)
  19. assert(a.first = 2)
  20. assert(a.last = 4)
  21. a.remove_first
  22. assert(a.lower = 3)
  23. assert(a.first = 3)
  24. assert(a.last = 4)
  25. a.remove_first
  26. assert(a.lower = 4)
  27. assert(a.first = 4)
  28. assert(a.last = 4)
  29. a.remove_first
  30. assert(a.is_empty)
  31. end
  32. assert (b: BOOLEAN)
  33. do
  34. cpt := cpt + 1
  35. if not b then
  36. std_output.put_string("TEST_ARRAY: 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_ARRAY5
  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. -- ------------------------------------------------------------------------------------------------------------------------------