aoc2024

Advent of Code 2024
Log | Files | Refs | README

MySuite.scala (268B)


      1 // For more information on writing tests, see
      2 // https://scalameta.org/munit/docs/getting-started.html
      3 class MySuite extends munit.FunSuite {
      4   test("example test that succeeds") {
      5     val obtained = 42
      6     val expected = 42
      7     assertEquals(obtained, expected)
      8   }
      9 }