
scalaprops.TestStatus.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalaprops_native0.5_3 Show documentation
Show all versions of scalaprops_native0.5_3 Show documentation
property based testing library for Scala
The newest version!
package scalaprops
import java.util.concurrent.atomic.AtomicInteger
private[scalaprops] final case class TestStatus(
success: AtomicInteger = new AtomicInteger(0),
failure: AtomicInteger = new AtomicInteger(0),
error: AtomicInteger = new AtomicInteger(0),
ignored: AtomicInteger = new AtomicInteger(0),
all: AtomicInteger = new AtomicInteger(0)
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy