source: autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/evaluation/rule/set/EmptyUsabilityRulesetTest.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: 448 bytes
Line 
1package de.ugoe.cs.autoquest.usability.evaluation.rule.set;
2
3import static de.ugoe.cs.autoquest.usability.testutil.FestConditionUtil.noUsabilityRules;
4import static org.fest.assertions.api.Assertions.assertThat;
5
6import org.junit.Test;
7
8public class EmptyUsabilityRulesetTest {
9
10    @Test
11    public void empty_usability_ruleset_contains_no_rules() {
12        assertThat(new EmptyUsabilityRuleset()).has(noUsabilityRules());
13    }
14
15}
Note: See TracBrowser for help on using the repository browser.