/test/language/agent/test_agent18.e
Specman e | 49 lines | 21 code | 5 blank | 23 comment | 0 complexity | e51ae7511096146cb0845a8087226a26 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_AGENT18 5 6insert 7 EIFFELTEST_TOOLS 8 9create {} 10 make 11 12feature {ANY} 13 make 14 local 15 f: FUNCTION[TUPLE[INTEGER, REAL], REAL]; d: REAL 16 do 17 f := agent multiply(?, ?) 18 f.call([{INTEGER_32 3}, 1.5]) 19 --assert(f.last_result = 6) -- *** NOT YET IMPLEMENTED 20 d := f.item([{INTEGER_32 3}, 2.0]) 21 assert(d = 6) 22 assert(6 - f.item([{INTEGER_32 3}, 2.0]) = 0) 23 --as argument (needed for io.put_double(f.item([3, 2])) 24 end 25 26 multiply (i: INTEGER; d: REAL): REAL 27 do 28 Result := d * i 29 end 30 31end -- class TEST_AGENT18 32-- 33-- ------------------------------------------------------------------------------------------------------------------------------ 34-- Copyright notice below. Please read. 35-- 36-- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, 37-- as published by the Free Software Foundation; either version 2, or (at your option) any later version. 38-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty 39-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have 40-- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free 41-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 42-- 43-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 44-- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 45-- 46-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 47-- 48-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 49-- ------------------------------------------------------------------------------------------------------------------------------