/test/language/unclassified/jb/test_jb04.e
Specman e | 62 lines | 32 code | 7 blank | 23 comment | 1 complexity | 34756fe3fb40edabfc6c19ff920c572c 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_JB04 5 -- From: Jacques Bouchard <bouchard@mageos.com> 6 7inherit 8 AUX_JB04 9 rename identity as aux_jbo4_identity 10 end 11 12create {} 13 make 14 15feature {ANY} 16 identity: STRING 17 do 18 Result := "TEST_JB04.identity" 19 end 20 21 make 22 do 23 link := Current 24 assert(identity.is_equal("TEST_JB04.identity")) 25 assert(Current.identity.is_equal("TEST_JB04.identity")) 26 assert(link.identity.is_equal("TEST_JB04.identity")) 27 end 28 29 assert (boolean: BOOLEAN) 30 do 31 cpt := cpt + 1 32 if not boolean then 33 sedb_breakpoint 34 std_output.put_string("TEST_JB04: 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_JB04 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-- ------------------------------------------------------------------------------------------------------------------------------