Writing Tests with ScalaTest

ScalaTest is a popular testing framework for writing unit tests in Scala.

Basic Test Example

import org.scalatest.funsuite.AnyFunSuite

class MyTests extends AnyFunSuite {
  test("addition works") {
    assert(1 + 1 == 2)
  }
}

Run tests using sbt: sbt test

← PrevNext →