source: autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/AllTests.java @ 1030

Last change on this file since 1030 was 1030, checked in by adeicke, 11 years ago

Initial commit.

  • Property svn:mime-type set to text/plain
File size: 996 bytes
Line 
1
2package de.ugoe.cs.autoquest.usability;
3
4import org.junit.runner.RunWith;
5import org.junit.runners.Suite;
6import org.junit.runners.Suite.SuiteClasses;
7
8import de.ugoe.cs.autoquest.usability.evaluation.rule.evaluator.NoLetterOrDigitTextInputsEvaluatorTest;
9import de.ugoe.cs.autoquest.usability.evaluation.rule.evaluator.TextInputEntryRepetitionsEvaluatorTest;
10import de.ugoe.cs.autoquest.usability.evaluation.rule.evaluator.TextInputRatioEvaluatorTest;
11import de.ugoe.cs.autoquest.usability.evaluation.rule.set.EmptyUsabilityRulesetTest;
12import de.ugoe.cs.autoquest.usability.evaluation.rule.set.RulesetFactoryTest;
13
14@RunWith(Suite.class)
15@SuiteClasses(
16    { UsabilityEvaluationFacadeTest.class, UsabilityEvaluationReportTest.class,
17        EmptyUsabilityRulesetTest.class, RulesetFactoryTest.class,
18        NoLetterOrDigitTextInputsEvaluatorTest.class, TextInputEntryRepetitionsEvaluatorTest.class,
19        TextInputRatioEvaluatorTest.class })
20public class AllTests {
21
22}
Note: See TracBrowser for help on using the repository browser.