/test/language/unclassified/test_out1.e
Specman e | 62 lines | 35 code | 5 blank | 22 comment | 1 complexity | e73422be5d509c68c71eabc582c7865f 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_OUT1 5 6create {} 7 make 8 9feature {ANY} 10 make 11 local 12 view: STRING 13 do 14 assert(0.out.is_equal("0")) 15 assert(25.out.is_equal("25")) 16 assert(True.out.is_equal("True")) 17 assert(False.out.is_equal("False")) 18 assert('A'.out.is_equal("A")) 19 assert('a'.out.is_equal("a")) 20 assert(1.5.out.is_equal("1.500000")) 21 assert(("foo").out.is_equal("foo")) 22 view := 3.out 23 assert(("3").is_equal(3.out)) 24 view := {INTEGER_32 3}.out 25 assert(("3").is_equal({INTEGER_32 3}.out)) 26 assert(("X").is_equal('X'.out)) 27 end 28 29 assert (b: BOOLEAN) 30 do 31 cpt := cpt + 1 32 if not b then 33 sedb_breakpoint 34 std_output.put_string("TEST_OUT1: 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_OUT1 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-- ------------------------------------------------------------------------------------------------------------------------------