/test/lib/storage/collection/test_set_all_with2.e

http://github.com/tybor/Liberty · Specman e · 68 lines · 39 code · 6 blank · 23 comment · 1 complexity · a7c65ab8d2264295baa09a753d9373b0 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_SET_ALL_WITH2
  5. -- Test feature `set_all_with' of various implementations.
  6. create {}
  7. make
  8. feature {ANY}
  9. make
  10. local
  11. a: ARRAY[REAL]; fa: FAST_ARRAY[REAL]; ll: LINKED_LIST[REAL]; l2l: TWO_WAY_LINKED_LIST[REAL]
  12. do
  13. create a.make(1, 10)
  14. test(a)
  15. create fa.make(10)
  16. test(fa)
  17. create ll.make
  18. ll.add_last(1)
  19. ll.add_last(1)
  20. test(ll)
  21. create l2l.make
  22. l2l.add_last(1)
  23. l2l.add_last(1)
  24. test(l2l)
  25. end
  26. feature {}
  27. test (c: COLLECTION[REAL])
  28. do
  29. c.set_all_with(2.55)
  30. assert(c.occurrences(2.55) = c.count)
  31. end
  32. assert (b: BOOLEAN)
  33. do
  34. cpt := cpt + 1
  35. if not b then
  36. std_output.put_string("TEST_SET_ALL_WITH2: 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_SET_ALL_WITH2
  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. -- ------------------------------------------------------------------------------------------------------------------------------