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