module Minitest

def self.plugin_simplecov_init(_options)

def self.plugin_simplecov_init(_options)
  if defined?(SimpleCov)
    SimpleCov.external_at_exit = true
    Minitest.after_run do
      SimpleCov.at_exit_behavior
    end
  end
end