Class: TestLauncher::Queries::BaseQuery

Inherits:
Object
  • Object
show all
Defined in:
lib/test_launcher/queries.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(request, command_finder) ⇒ BaseQuery

Returns a new instance of BaseQuery.



62
63
64
65
# File 'lib/test_launcher/queries.rb', line 62

def initialize(request, command_finder)
  @request = request
  @command_finder = command_finder
end

Instance Attribute Details

#requestObject (readonly)

Returns the value of attribute request.



61
62
63
# File 'lib/test_launcher/queries.rb', line 61

def request
  @request
end

Instance Method Details

#commandObject

Raises:

  • (NotImplementedError)


67
68
69
# File 'lib/test_launcher/queries.rb', line 67

def command
  raise NotImplementedError
end