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