10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

sbt-scoverage を使う

Last updated at Posted at 2015-04-03

scoverage/sbt-scoverage
scoverageというScala向けのコードカバレッジツールをsbtプラグインとして利用できるものです。

使い方

sbt-scoverageのREADMEに書いてあるままですが、日本語で書いていきます。

project/plugins.sbt に以下のコードを追加します。

resolvers += Classpaths.sbtPluginReleases

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.4")

テストを実行してついでにカバレッジレポートを出力するコマンドです。

$ sbt clean coverage test

完了するとtarget/scala-2.11/scoverage-report/index.htmlにレポートが出力されます。

あわせて読みたい

ScalaプロジェクトをCircleCIでビルド+テストして、scoverageで計測したカバレッジをCOVERALLSに送るための諸設定をした - TODESKING

sbtタスクなど内容が古いものもありますが、CircleCIでの設定が参考になりそうです。

10
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?