All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.main_2.12.1.10.5.source-code.TypelevelExampleSuite.scala.txt Maven / Gradle / Ivy

There is a newer version: 1.10.7
Show newest version
package example

import cats.effect.*
import munit.CatsEffectSuite

class ExampleSuite extends CatsEffectSuite:

  test("tests can return IO[Unit] with assertions expressed via a map") {
    IO(42).map(it => assertEquals(it, 42))
  }

  test("alternatively, assertions can be written via assertIO") {
    assertIO(IO(42), 42)
  }
end ExampleSuite




© 2015 - 2025 Weber Informatics LLC | Privacy Policy