commonMain.it.unibo.tuprolog.solve.TestStackTrace.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-solve Show documentation
Show all versions of test-solve Show documentation
Common testing facilities for 2P-Kt-based logic solvers
package it.unibo.tuprolog.solve
interface TestStackTrace : SolverTest {
companion object {
fun prototype(solverFactory: SolverFactory): TestStackTrace = TestStackTraceImpl(solverFactory)
}
fun testSimpleStackTrace()
fun testDoubleStackTrace()
fun testTripleStackTrace()
fun testThrowIsNotInStacktrace()
}