@@ -135,7 +135,7 @@ name := "scalatest_study"
135135
136136version := " 1.0"
137137
138- scalaVersion := " 3.7.3 "
138+ scalaVersion := " 3.7.4 "
139139
140140libraryDependencies ++= Seq (
141141 " org.scalatest" %% " scalatest-flatspec" % " 3.2.19" % " test" ,
@@ -258,8 +258,8 @@ class CalcSpec extends AnyFlatSpec with Diagrams {
258258```
259259[info] Loading project definition from /Users/dwango/workspace/scalatest_study/project
260260[info] Set current project to scalatest_study (in build file:/Users/dwango/workspace/scalatest_study/)
261- [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.3 /classes...
262- [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.3 /test-classes...
261+ [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.4 /classes...
262+ [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.4 /test-classes...
263263[info] CalcSpec:
264264[info] sum関数
265265[info] - should 整数の配列を取得し、それらを足し合わせた整数を返すことができる
@@ -278,7 +278,7 @@ class CalcSpec extends AnyFlatSpec with Diagrams {
278278```
279279[info] Loading project definition from /Users/dwango/workspace/scalatest_study/project
280280[info] Set current project to scalatest_study (in build file:/Users/dwango/workspace/scalatest_study/)
281- [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.3 /test-classes...
281+ [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.4 /test-classes...
282282[info] CalcSpec:
283283[info] sum関数
284284[info] - should 整数の配列を取得し、それらを足し合わせた整数を返すことができる *** FAILED ***
@@ -371,7 +371,7 @@ class CalcSpec extends AnyFlatSpec with Diagrams with TimeLimits {
371371```
372372[info] Loading project definition from /Users/dwango/workspace/scalatest_study/project
373373[info] Set current project to scalatest_study (in build file:/Users/dwango/workspace/scalatest_study/)
374- [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.3 /test-classes...
374+ [info] Compiling 1 Scala source to /Users/dwango/workspace/scalatest_study/target/scala-3.7.4 /test-classes...
375375[info] CalcSpec:
376376[info] sum関数
377377[info] - should 整数の配列を取得し、それらを足し合わせた整数を返すことができる
@@ -454,7 +454,7 @@ class CalcSpec extends AnyFlatSpec with Diagrams with TimeLimits {
454454addSbtPlugin(" org.scoverage" % " sbt-scoverage" % " 2.3.1" )
455455```
456456
457- その後、` sbt clean coverage test coverageReport ` を実行することで、` target/scala-3.7.3 /scoverage-report/index.html ` にレポートが出力されます。
457+ その後、` sbt clean coverage test coverageReport ` を実行することで、` target/scala-3.7.4 /scoverage-report/index.html ` にレポートが出力されます。
458458
459459![ Scoverage Code Coverage] ( img/scoverage_code_coverage.png )
460460
0 commit comments