Sha256: a271faac3d4fae1175d1a7205981f90afad4981110988ddd0dab1bc7e56c6d20

Contents?: true

Size: 1 KB

Versions: 5

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: true

module TestQueue
  # This class provides an abstraction over the various test frameworks we
  # support. The framework-specific subclasses are defined in the various
  # test_queue/runner/* files.
  class TestFramework
    # Return all file paths to load test suites from.
    #
    # An example implementation might just return files passed on the command
    # line, or defer to the underlying test framework to determine which files
    # to load.
    #
    # Returns an Enumerable of String file paths.
    def all_suite_files
      raise NotImplementedError
    end

    # Load all suites from the specified file path.
    #
    # path - String file path to load suites from
    #
    # Returns an Enumerable of tuples containing:
    #   suite_name   - String that uniquely identifies this suite
    #   suite        - Framework-specific object that can be used to actually
    #                  run the suite
    def suites_from_file(path)
      raise NotImplementedError
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
test-queue-0.11.1 lib/test_queue/test_framework.rb
test-queue-0.11.0 lib/test_queue/test_framework.rb
test-queue-0.10.0 lib/test_queue/test_framework.rb
test-queue-0.9.0 lib/test_queue/test_framework.rb
test-queue-0.8.0 lib/test_queue/test_framework.rb