Class: Henitai::Reporter::Json

Inherits:
Base
  • Object
show all
Defined in:
lib/henitai/reporter.rb

Overview

JSON reporter.

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Henitai::Reporter::Base

Instance Method Details

#report(result) ⇒ Object



244
245
246
247
248
249
250
# File 'lib/henitai/reporter.rb', line 244

def report(result)
  schema = result.to_stryker_schema
  write_canonical(schema)
  write_session_snapshot(schema)
  write_activation_recipes(result)
  write_history_report
end