/tutorial/ace/aux_example_debug_a.e
http://github.com/tybor/Liberty · Specman e · 46 lines · 36 code · 3 blank · 7 comment · 0 complexity · 313155740bd15d99a3a5f0dcbb6511fe MD5 · raw file
- class AUX_EXAMPLE_DEBUG_A
- creation
- make
- feature {}
- make is
- do
- debug("trace 1")
- -- Executed (Default key)
- io.put_string(generating_type)
- io.put_string(": Debug 1%N")
- end
- debug("trace 2")
- -- Executed (Default key)
- io.put_string(generating_type)
- io.put_string(": Debug 2%N")
- end
- debug("trace 3")
- -- Not executed (Key not set for this class)
- io.put_string(generating_type)
- io.put_string(": Debug 3%N")
- end
- debug("trace 4")
- -- Not executed (Key not set for this class)
- io.put_string(generating_type)
- io.put_string(": Debug 4%N")
- end
- debug("trace 5")
- -- Not executed (Key not set for this cluster)
- io.put_string(generating_type)
- io.put_string(": Debug 5%N")
- end
- debug("trace 6")
- -- Not executed (Key not set for this cluster)
- io.put_string(generating_type)
- io.put_string(": Debug 6%N")
- end
- debug("trace 7")
- -- Not executed (Key not set for this class)
- io.put_string(generating_type)
- io.put_string(": Debug 7%N")
- end
- end
- end -- class AUX_EXAMPLE_DEBUG_A