Gemfile - configuration file to edit.bundle install - command to install gem.test/test_helper.rb - code file to edit.rails test -v - command to run tests and generate coverage report.coverage/index.html - coverage report to view in web browser.echo coverage >> .gitignore - command to add coverage folder to gitignore file.# Test coverage metrics
gem 'simplecov', require: false, group: :test
require 'simplecov'
SimpleCov.start('rails')
parallelize call:  # parallelize(workers: :number_of_processors)