Ignore:
Timestamp:
06/06/13 17:09:49 (11 years ago)
Author:
adeicke
Message:

Adjustments according to renaming refactorings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/rules/metrics/TextInputEntryRepetitionsEvaluatorTest.java

    r1201 r1218  
    2828 
    2929import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskModel; 
    30 import de.ugoe.cs.autoquest.usability.result.UsabilityDefect; 
     30import de.ugoe.cs.autoquest.usability.result.UsabilityProblemDescription; 
    3131import de.ugoe.cs.autoquest.usability.testutil.GenerateTaskModelUtil; 
    3232 
     
    5050        ITaskModel taskTree = GenerateTaskModelUtil.getTaskModelFromSpec(spec); 
    5151        // When 
    52         Optional<UsabilityDefect> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
     52        Optional<UsabilityProblemDescription> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
    5353        // Then 
    5454        assertThat(recommendation).is(absent()); 
     
    7070        ITaskModel taskTree = GenerateTaskModelUtil.getTaskModelFromSpec(spec); 
    7171        // When 
    72         Optional<UsabilityDefect> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
     72        Optional<UsabilityProblemDescription> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
    7373        // Then 
    7474        assertThat(recommendation).is(present()).has(infoRecommendationSeverityLevel()); 
     
    9090        ITaskModel taskTree = GenerateTaskModelUtil.getTaskModelFromSpec(spec); 
    9191        // When 
    92         Optional<UsabilityDefect> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
     92        Optional<UsabilityProblemDescription> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
    9393        // Then 
    9494        assertThat(recommendation).is(present()).has(lowRecommendationSeverityLevel()); 
     
    137137        ITaskModel taskTree = GenerateTaskModelUtil.getTaskModelFromSpec(spec); 
    138138        // When 
    139         Optional<UsabilityDefect> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
     139        Optional<UsabilityProblemDescription> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
    140140        // Then 
    141141        assertThat(recommendation).is(present()).has(mediumRecommendationSeverityLevel()); 
     
    184184        ITaskModel taskTree = GenerateTaskModelUtil.getTaskModelFromSpec(spec); 
    185185        // When 
    186         Optional<UsabilityDefect> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
     186        Optional<UsabilityProblemDescription> recommendation = new TextInputEntryRepetitionsMetric(taskTree).calculate(); 
    187187        // Then 
    188188        assertThat(recommendation).is(present()).has(highRecommendationSeverityLevel()); 
Note: See TracChangeset for help on using the changeset viewer.