Module: FluentCommandBuilder::MSTest::V2010

Defined in:
lib/fluent_command_builder/command_builders/mstest_2010.rb

Defined Under Namespace

Classes: MSTest

Constant Summary collapse

COMMAND_NAME =
'MSTest'

Instance Method Summary collapse

Instance Method Details

#mstest {|builder| ... } ⇒ Object

Yields:

  • (builder)


113
114
115
116
117
118
# File 'lib/fluent_command_builder/command_builders/mstest_2010.rb', line 113

def mstest
  builder = CommandBuilder.new COMMAND_NAME
  command = MSTest.new builder
  yield builder if block_given?
  command
end