com.sageserpent.americium.CaseFactory.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of americium_3 Show documentation
Show all versions of americium_3 Show documentation
Generation of test data for parameterised testing
The newest version!
package com.sageserpent.americium
trait CaseFactory[+Case] {
def apply(input: BigInt): Case
def lowerBoundInput: BigInt
def upperBoundInput: BigInt
def maximallyShrunkInput: BigInt
}