module Minitest

def self.plugin_simplecov_init(_options)

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