```it("Should throw an exception when counter is negative") { assertThrows<IllegalArgumentExcep...
r
Copy code
it("Should throw an exception when counter is negative") {
  assertThrows<IllegalArgumentException> {
    counter.tagVal(EnumTagValue(ExampleEnum.BAR)).increment(-1)
  }
}
👍 1