class BitGirder::Testing::AbstractPhaseClass

Public Instance Methods

start_invocation( ctx ) click to toggle source
# File lib/bitgirder/testing.rb, line 118
def start_invocation( ctx )

    @ctx = ctx
    start_impl
end

Private Instance Methods

inst_get( fld ) click to toggle source
# File lib/bitgirder/testing.rb, line 132
def inst_get( fld )

    not_nil( fld, :fld )
    @ctx.inst.instance_variable_get( :"@#{fld}" )
end
inst_set( fld, val ) click to toggle source
# File lib/bitgirder/testing.rb, line 125
def inst_set( fld, val )

    not_nil( fld, :fld )
    @ctx.inst.instance_variable_set( :"@#{fld}", val )
end