/test/language/assertion/aux_require1_a.e
Specman e | 69 lines | 39 code | 9 blank | 21 comment | 0 complexity | de0b630fbf8865ec46347380827135f4 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-- 4deferred class AUX_REQUIRE1_A 5 6insert AUX_REQUIRE1_TOOL 7 8feature {} 9 a_only 10 require 11 counting_require 12 do 13 end 14 15 a_and_c 16 require 17 counting_require 18 do 19 end 20 21 d_or_a_and_c 22 require 23 counting_require 24 deferred 25 end 26 27 a_and_b 28 require 29 counting_require 30 do 31 end 32 33 d_or_a_and_b 34 require 35 counting_require 36 deferred 37 end 38 39 everywhere 40 require 41 counting_require 42 deferred 43 end 44 45 partial 46 require 47 counting_require 48 deferred 49 end 50 51end -- class AUX_REQUIRE1_A 52-- 53-- ------------------------------------------------------------------------------------------------------------------------------ 54-- Copyright notice below. Please read. 55-- 56-- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, 57-- as published by the Free Software Foundation; either version 2, or (at your option) any later version. 58-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty 59-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have 60-- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free 61-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 62-- 63-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 64-- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 65-- 66-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 67-- 68-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 69-- ------------------------------------------------------------------------------------------------------------------------------