import Testeranto from "testeranto/src/Node"; import { Ibdd_out, ITestImplementation, ITestSpecification, } from "testeranto/src/CoreTypes"; import { I, IInput, adapter } from "."; export default ( testImplementations: ITestImplementation, testSpecifications: ITestSpecification, testInput: IInput ) => { return Testeranto( testInput, testSpecifications, testImplementations, adapter ); };