/test/lib/io/test_read_integer1.e
Specman e | 57 lines | 32 code | 4 blank | 21 comment | 0 complexity | a34db854459252900bccd4188cab14cc 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_READ_INTEGER1 5 6insert 7 EIFFELTEST_TOOLS 8 9create {} 10 main 11 12feature {} 13 main 14 local 15 sfr: TEXT_FILE_READ; i: INTEGER 16 do 17 create sfr.connect_to("aux_read_integer1.dat") 18 assert(sfr.is_connected) 19 sfr.read_integer 20 i := sfr.last_integer 21 assert(i = 1) 22 sfr.read_integer 23 i := sfr.last_integer 24 assert(i = 2) 25 sfr.read_character 26 assert(sfr.last_character = 'A') 27 sfr.read_integer 28 i := sfr.last_integer 29 assert(i = 3) 30 sfr.read_integer 31 i := sfr.last_integer 32 assert(i = 4) 33 assert(sfr.end_of_input) 34 sfr.read_integer 35 assert(not sfr.valid_last_integer) 36 sfr.disconnect 37 end 38 39end -- class TEST_READ_INTEGER1 40-- 41-- ------------------------------------------------------------------------------------------------------------------------------ 42-- Copyright notice below. Please read. 43-- 44-- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, 45-- as published by the Free Software Foundation; either version 2, or (at your option) any later version. 46-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty 47-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have 48-- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free 49-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 50-- 51-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 52-- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 53-- 54-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 55-- 56-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 57-- ------------------------------------------------------------------------------------------------------------------------------