Module: FluentCommandBuilder::MSTest::V2008

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

Defined Under Namespace

Classes: MSTest

Constant Summary collapse

COMMAND_NAME =
'MSTest'

Instance Method Summary collapse

Instance Method Details

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

Yields:

  • (builder)


98
99
100
101
102
103
# File 'lib/fluent_command_builder/command_builders/mstest_2008.rb', line 98

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