Class AbstractDFALearnerIT
- java.lang.Object
-
- de.learnlib.testsupport.it.learner.AbstractDFALearnerIT
-
public abstract class AbstractDFALearnerIT extends Object
Abstract integration test for DFA learning algorithms.If run, this integration test tests the functionality of all
variants
of a DFA learning algorithm against all the examples contained inLearningExamples.createDFAExamples()
.
-
-
Constructor Summary
Constructors Constructor Description AbstractDFALearnerIT()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract <I> void
addLearnerVariants(Alphabet<I> alphabet, int targetSize, MembershipOracle.DFAMembershipOracle<I> mqOracle, LearnerVariantList.DFALearnerVariantList<I> variants)
Adds, for a given setup, all the variants of the DFA learner to be tested to the specifiedvariant list
.Object[]
createExampleITCases()
-
-
-
Method Detail
-
createExampleITCases
@Factory public Object[] createExampleITCases()
-
addLearnerVariants
protected abstract <I> void addLearnerVariants(Alphabet<I> alphabet, int targetSize, MembershipOracle.DFAMembershipOracle<I> mqOracle, LearnerVariantList.DFALearnerVariantList<I> variants)
Adds, for a given setup, all the variants of the DFA learner to be tested to the specifiedvariant list
.- Parameters:
alphabet
- the input alphabettargetSize
- the size of the target automatonmqOracle
- the membership oraclevariants
- list to add the learner variants to
-
-