/test/lib/storage/collection/test_array_make1.e
Specman e | 59 lines | 27 code | 10 blank | 22 comment | 1 complexity | 3568875e5086faf9c9d89c90a3a15aa8 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_ARRAY_MAKE1 5 6create {} 7 make 8 9feature {ANY} 10 t_boolean: ARRAY[BOOLEAN] 11 12 t_integer: ARRAY[INTEGER] 13 14 t_animal: ARRAY[ANIMAL] 15 16 t_real: ARRAY[REAL] 17 18 t_any: ARRAY[ANY] 19 20 make 21 do 22 create t_boolean.make(1, 4) 23 assert(t_boolean.count = 4) 24 assert(t_boolean.fast_occurrences(False) = 4) 25 end 26 27 assert (b: BOOLEAN) 28 do 29 cpt := cpt + 1 30 if not b then 31 std_output.put_string("TEST_ARRAY_MAKE1: 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_ARRAY_MAKE1 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-- ------------------------------------------------------------------------------------------------------------------------------