/test/language/unclassified/test_pre_once2.e
Specman e | 62 lines | 33 code | 7 blank | 22 comment | 1 complexity | fddef508b2205f38cfeb92fa49e37242 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_PRE_ONCE2 5 6create {} 7 make 8 9feature {ANY} 10 make 11 do 12 assert(max = 400) 13 assert(foo.is_equal("hip hop")) 14 end 15 16 max: INTEGER 17 once 18 Result := 200 * 2 19 ensure 20 meaningful: Result >= 127 21 end 22 23 foo: STRING 24 once 25 Result := "hip hop" 26 ensure 27 Result.is_equal("hip hop") 28 end 29 30 assert (b: BOOLEAN) 31 do 32 cpt := cpt + 1 33 if not b then 34 std_output.put_string("TEST_PRE_ONCE2: ERROR Test # ") 35 std_output.put_integer(cpt) 36 std_output.put_string("%N") 37 else 38 -- std_output.put_string("Yes%N"); 39 end 40 end 41 42 cpt: INTEGER 43 44end -- class TEST_PRE_ONCE2 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-- ------------------------------------------------------------------------------------------------------------------------------