Module: Configuration::MSTest

Includes:
Albacore::Configuration
Defined in:
lib/albacore/config/mstesttestrunnerconfig.rb

Instance Method Summary collapse

Methods included from Albacore::Configuration

included

Instance Method Details

#mstest {|@mstestconfig| ... } ⇒ Object

Yields:

  • (@mstestconfig)


8
9
10
11
12
# File 'lib/albacore/config/mstesttestrunnerconfig.rb', line 8

def mstest
  @mstestconfig ||= OpenStruct.new.extend(OpenStructToHash).extend(MSTest)
  yield(@mstestconfig) if block_given?
  @mstestconfig
end