com.sageserpent.americium.CommonApi.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
import cats.free.Free.pure
import com.sageserpent.americium.generation.GenerationOperation
trait CommonApi {
def only[Case](onlyCase: Case): TrialsImplementation[Case] =
TrialsImplementation(pure[GenerationOperation, Case](onlyCase))
}