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