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