Class: SixthSense::MutationPlan
- Inherits:
-
Struct
- Object
- Struct
- SixthSense::MutationPlan
- Defined in:
- lib/sixth_sense/mutation_engine.rb
Instance Attribute Summary collapse
-
#engine ⇒ Object
Returns the value of attribute engine.
-
#mode ⇒ Object
Returns the value of attribute mode.
-
#source_units ⇒ Object
Returns the value of attribute source_units.
-
#subjects ⇒ Object
Returns the value of attribute subjects.
-
#test_files ⇒ Object
Returns the value of attribute test_files.
Instance Method Summary collapse
Instance Attribute Details
#engine ⇒ Object
Returns the value of attribute engine
10 11 12 |
# File 'lib/sixth_sense/mutation_engine.rb', line 10 def engine @engine end |
#mode ⇒ Object
Returns the value of attribute mode
10 11 12 |
# File 'lib/sixth_sense/mutation_engine.rb', line 10 def mode @mode end |
#source_units ⇒ Object
Returns the value of attribute source_units
10 11 12 |
# File 'lib/sixth_sense/mutation_engine.rb', line 10 def source_units @source_units end |
#subjects ⇒ Object
Returns the value of attribute subjects
10 11 12 |
# File 'lib/sixth_sense/mutation_engine.rb', line 10 def subjects @subjects end |
#test_files ⇒ Object
Returns the value of attribute test_files
10 11 12 |
# File 'lib/sixth_sense/mutation_engine.rb', line 10 def test_files @test_files end |
Instance Method Details
#to_h ⇒ Object
11 12 13 14 15 16 17 18 19 |
# File 'lib/sixth_sense/mutation_engine.rb', line 11 def to_h { engine: engine, mode: mode, subjects: subjects, test_files: test_files, source_units: source_units } end |