Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.10.2
e507a88c0187dcaba3f226e1c6022921acae2f2c
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.10.1
version = 3.10.2

runner.dialect = scala212source3
preset = default
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*

class TestClassTests extends AnyFlatSpec {
"TestClass" should "double a number correctly" in {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package example

import org.scalatest.funsuite._
import org.scalatest.funsuite.*

class UnitTest extends AnyFunSuite {
test("forIntegrationTests") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package example

import org.scalatest.funsuite._
import org.scalatest.funsuite.*

class UnitTest extends AnyFunSuite {
test("forUnitTests") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*

class TestClassTests extends AnyFlatSpec {
"TestClass" should "double a number correctly" in {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package example

import org.scalatest.funsuite._
import org.scalatest.funsuite.*

class UnitTest extends AnyFunSuite {
test("forIntegrationTests") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package example

import org.scalatest.funsuite._
import org.scalatest.funsuite.*

class UnitTest extends AnyFunSuite {
test("forUnitTests") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package example

import org.scalatest.funsuite._
import org.scalatest.funsuite.*

class UnitTest extends AnyFunSuite {
test("forIntegrationTests") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package example

import org.scalatest.funsuite._
import org.scalatest.funsuite.*

class UnitTest extends AnyFunSuite {
test("forUnitTests") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest.common

import org.scalatest.flatspec._
import org.scalatest.flatspec.*
import org.scalatest.matchers.should.Matchers

class GreeterSpec extends AnyFlatSpec with Matchers {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package jacocotest.extra

import java.util.Currency
import org.scalatest.flatspec._
import org.scalatest.flatspec.*
import org.scalatest.matchers.should.Matchers

class MoneySpec extends AnyFlatSpec with Matchers {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import sbt._
import sbt.Keys._
import sbt.*
import sbt.Keys.*
import sbt.plugins.JvmPlugin

object SettingsPlugin extends AutoPlugin {
override def trigger: PluginTrigger = AllRequirements
override def requires: Plugins = JvmPlugin

override def projectSettings: Seq[Setting[_]] = Seq(
override def projectSettings: Seq[Setting[?]] = Seq(
scalaVersion := (LocalRootProject / scalaVersion).value,
libraryDependencies ++= (LocalRootProject / libraryDependencies).value
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*

class TestClassTests extends AnyFlatSpec {
"TestClass" should "double a number correctly" in {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*

class TestClassTests extends AnyFlatSpec {
"TestClass" should "double a number correctly" in {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*

class TestClassTests extends AnyFlatSpec {
"TestClass" should "double a number correctly" in {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*

class TestClassTests extends AnyFlatSpec {
"TestClass" should "double a number correctly" in {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import java.{util => ju}
import java.util as ju

object PropertyUtils {
private val props = new ju.Properties()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*
import org.scalatest.matchers.should.Matchers

class PropertyUtilsSpec extends AnyFlatSpec with Matchers {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package jacocotest

import org.scalatest.flatspec._
import org.scalatest.flatspec.*

class TestClassTests extends AnyFlatSpec {
"TestClass" should "double a number correctly" in {
Expand Down
Loading