Module: FluentCommandBuilder::MSTest::V2005

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

Defined Under Namespace

Classes: MSTest

Constant Summary collapse

COMMAND_NAME =
'MSTest'

Instance Method Summary collapse

Instance Method Details

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

Yields:

  • (builder)


93
94
95
96
97
98
# File 'lib/fluent_command_builder/command_builders/mstest_2005.rb', line 93

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