/tutorial/ace/aux_example_debug/aux_example_debug_c.e
Specman e | 46 lines | 36 code | 3 blank | 7 comment | 0 complexity | 8ba720174fbd1be81e9b85a242279778 MD5 | raw file
1class AUX_EXAMPLE_DEBUG_C 2 3create {ANY} 4 make 5 6feature {} 7 make 8 do 9 debug ("trace 1") 10 -- Not executed (Default key overridden by per-cluster option) 11 io.put_string(generating_type) 12 io.put_string(": Debug 1%N") 13 end 14 debug ("trace 2") 15 -- Not executed (Default key overridden by per-cluster option) 16 io.put_string(generating_type) 17 io.put_string(": Debug 2%N") 18 end 19 debug ("trace 3") 20 -- Not executed (Key not set for this class) 21 io.put_string(generating_type) 22 io.put_string(": Debug 3%N") 23 end 24 debug ("trace 4") 25 -- Not executed (Key not set for this class) 26 io.put_string(generating_type) 27 io.put_string(": Debug 4%N") 28 end 29 debug ("trace 5") 30 -- Executed (Per-cluster option) 31 io.put_string(generating_type) 32 io.put_string(": Debug 5%N") 33 end 34 debug ("trace 6") 35 -- Executed (Per-cluster option) 36 io.put_string(generating_type) 37 io.put_string(": Debug 6%N") 38 end 39 debug ("trace 7") 40 -- Not executed (Key not set for this class) 41 io.put_string(generating_type) 42 io.put_string(": Debug 7%N") 43 end 44 end 45 46end -- class AUX_EXAMPLE_DEBUG_C