/test/language/expanded/test_expanded33.e
Specman e | 60 lines | 35 code | 4 blank | 21 comment | 0 complexity | 0a388b6977ad455578032d3095e81216 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-- 4class TEST_EXPANDED33 5 6insert 7 EIFFELTEST_TOOLS 8 9create {ANY} 10 make 11 12feature {ANY} 13 make 14 local 15 list: LINKED_LIST[AUX_EXPANDED33]; it: ITERATOR[AUX_EXPANDED33]; x: AUX_EXPANDED33; y: AUX_EXPANDED33 16 i: INTEGER 17 do 18 create list.make 19 x.set(5) 20 y.set(10) 21 list.add_last(x) 22 list.add_last(y) 23 it := list.new_iterator 24 it.start 25 i := list.lower 26 list.item(i).set(1) 27 assert(list.item(i).item = 5) --original value not changed (expanded) 28 it.item.set(1) 29 assert(it.item.item = 5) --original value not changed (expanded) 30 it.next 31 i := i + 1 32 list.item(i).set(1) 33 assert(list.item(i).item = 10) 34 it.item.set(1) 35 assert(it.item.item = 10) 36 it.next 37 i := i + 1 38 assert(x.item = 5) 39 assert(y.item = 10) 40 end 41 42end -- class TEST_EXPANDED33 43-- 44-- ------------------------------------------------------------------------------------------------------------------------------ 45-- Copyright notice below. Please read. 46-- 47-- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, 48-- as published by the Free Software Foundation; either version 2, or (at your option) any later version. 49-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty 50-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have 51-- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free 52-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 53-- 54-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 55-- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 56-- 57-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 58-- 59-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 60-- ------------------------------------------------------------------------------------------------------------------------------