Newer
Older
miracle-tv-backend / src / test / scala / MySuite.scala
@Илья Панфёров Илья Панфёров on 19 Jul 268 bytes feat: initial commit
// For more information on writing tests, see
// https://scalameta.org/munit/docs/getting-started.html
class MySuite extends munit.FunSuite {
  test("example test that succeeds") {
    val obtained = 42
    val expected = 42
    assertEquals(obtained, expected)
  }
}