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

jvmTest.com.sksamuel.kotest.assertions.AssertionCounterFreeSpecTest.kt Maven / Gradle / Ivy

package com.sksamuel.kotest.assertions

import io.kotest.core.spec.style.FreeSpec
import io.kotest.core.test.AssertionMode
import io.kotest.matchers.shouldBe

class AssertionCounterFreeSpecTest : FreeSpec({
   assertions = AssertionMode.Error
   "container should not need to have an assertion" - {
      "neither should this container" - {
         "but this one does" {
            1 shouldBe 1
         }
      }
   }
})




© 2015 - 2025 Weber Informatics LLC | Privacy Policy