Class: Koine::TestRunner::Adapters::Phpunit
- Inherits:
-
BaseRegexp
- Object
- BaseAdapter
- BaseRegexp
- Koine::TestRunner::Adapters::Phpunit
- Defined in:
- lib/koine/test_runner/adapters/phpunit.rb
Constant Summary collapse
- DEFAULT_OPTIONS =
[ '--color' ].freeze
Instance Attribute Summary
Attributes inherited from BaseAdapter
Instance Method Summary collapse
-
#initialize(file_pattern: /.*Test.php$/, options: nil) ⇒ Phpunit
constructor
A new instance of Phpunit.
Methods inherited from BaseAdapter
Constructor Details
#initialize(file_pattern: /.*Test.php$/, options: nil) ⇒ Phpunit
Returns a new instance of Phpunit.
9 10 11 12 |
# File 'lib/koine/test_runner/adapters/phpunit.rb', line 9 def initialize(file_pattern: /.*Test.php$/, options: nil) super(file_pattern: file_pattern) @options = Array( || DEFAULT_OPTIONS) end |