
nz.ac.waikato.modeljunit.storytest.MCDCSuggestionStrategyFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paramedit Show documentation
Show all versions of paramedit Show documentation
A tool for editing test parameters and suggesting additional parameter values.
It provides several heuristics (including PairWise and MC/DC) for analyzing
a set of input tuples and suggesting missing/extra values.
The newest version!
package nz.ac.waikato.modeljunit.storytest;
public class MCDCSuggestionStrategyFactory
implements SuggestionStrategyFactory
{
public static MCDCSuggestionStrategyFactory INSTANCE =
new MCDCSuggestionStrategyFactory();
private MCDCSuggestionStrategyFactory(){}
public MCDCSuggestionStrategy createSuggestionStrategy(CalcTable table)
{
return new MCDCSuggestionStrategy(table);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy