Index: unk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/UsabilityEvaluationFacadeTest.java
===================================================================
--- /trunk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/UsabilityEvaluationFacadeTest.java	(revision 1141)
+++ 	(revision )
@@ -1,75 +1,0 @@
-//   Copyright 2012 Georg-August-Universität Göttingen, Germany
-//
-//   Licensed under the Apache License, Version 2.0 (the "License");
-//   you may not use this file except in compliance with the License.
-//   You may obtain a copy of the License at
-//
-//       http://www.apache.org/licenses/LICENSE-2.0
-//
-//   Unless required by applicable law or agreed to in writing, software
-//   distributed under the License is distributed on an "AS IS" BASIS,
-//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//   See the License for the specific language governing permissions and
-//   limitations under the License.
-
-package de.ugoe.cs.autoquest.usability;
-
-import static de.ugoe.cs.autoquest.usability.evaluation.rule.set.RulesetFactory.emptyUsabilityRuleset;
-import static org.fest.assertions.api.Assertions.assertThat;
-
-import org.junit.Test;
-
-import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskTree;
-import de.ugoe.cs.autoquest.usability.UsabilityEvaluationFacade.ExecuteUsabilityEvaluationStep;
-import de.ugoe.cs.autoquest.usability.testutil.DummyUsabilityRuleset;
-import de.ugoe.cs.autoquest.usability.testutil.TaskTreeBuilder;
-
-/**
- * <p>
- * TODO comment
- * </p>
- * 
- * @author Alexander Deicke
- */
-public class UsabilityEvaluationFacadeTest {
-
-    @Test(expected = NullPointerException.class)
-    public void apply_null_for_ruleset_should_throw_exception() {
-        UsabilityEvaluationFacade.applyUsabilityRuleset(null);
-    }
-
-    @Test
-    public void apply_empty_ruleset_should_return_execute_usability_evaluation_step() {
-        ExecuteUsabilityEvaluationStep executeUsabilityEvaluationStep =
-            UsabilityEvaluationFacade.applyUsabilityRuleset(emptyUsabilityRuleset());
-        assertThat(executeUsabilityEvaluationStep)
-            .isInstanceOf(ExecuteUsabilityEvaluationStep.class);
-    }
-
-    @Test(expected = NullPointerException.class)
-    public void evaluate_usability_of_null_should_throw_exception() {
-        UsabilityEvaluationFacade.applyUsabilityRuleset(emptyUsabilityRuleset())
-            .evaluateUsabilityOf(null);
-    }
-
-    @Test
-    public void evaluate_usability_of_task_tree_against_empty_ruleset_should_return_empty_evaluation_report()
-    {
-        ITaskTree taskTree = TaskTreeBuilder.builder().root("Ich bin eine Wurzel").creatTaskTree();
-        UsabilityEvaluationReport evaluationReport =
-            UsabilityEvaluationFacade.applyUsabilityRuleset(emptyUsabilityRuleset())
-                .evaluateUsabilityOf(taskTree);
-        assertThat(evaluationReport).isNotNull();
-    }
-
-    @Test
-    public void evaluate_usability_of_task_tree_against_dummy_ruleset_should_return_non_empty_evaluation_report()
-    {
-        ITaskTree taskTree = TaskTreeBuilder.builder().root("Ich bin eine Wurzel").creatTaskTree();
-        UsabilityEvaluationReport evaluationReport =
-            UsabilityEvaluationFacade.applyUsabilityRuleset(new DummyUsabilityRuleset())
-                .evaluateUsabilityOf(taskTree);
-        assertThat(evaluationReport).isNotNull();
-    }
-
-}
Index: unk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/UsabilityEvaluationReportTest.java
===================================================================
--- /trunk/autoquest-core-usability-evaluation-test/src/main/java/de/ugoe/cs/autoquest/usability/UsabilityEvaluationReportTest.java	(revision 1141)
+++ 	(revision )
@@ -1,69 +1,0 @@
-//   Copyright 2012 Georg-August-Universität Göttingen, Germany
-//
-//   Licensed under the Apache License, Version 2.0 (the "License");
-//   you may not use this file except in compliance with the License.
-//   You may obtain a copy of the License at
-//
-//       http://www.apache.org/licenses/LICENSE-2.0
-//
-//   Unless required by applicable law or agreed to in writing, software
-//   distributed under the License is distributed on an "AS IS" BASIS,
-//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//   See the License for the specific language governing permissions and
-//   limitations under the License.
-
-package de.ugoe.cs.autoquest.usability;
-
-import static de.ugoe.cs.autoquest.usability.testutil.FestConditionUtil.noUsabilityGuidlineRecommendations;
-import static de.ugoe.cs.autoquest.usability.testutil.FestConditionUtil.usabilityGuidlineRecommendations;
-import static org.fest.assertions.api.Assertions.assertThat;
-
-import java.util.Collections;
-import java.util.List;
-
-import org.fest.util.Lists;
-import org.junit.Test;
-
-import de.ugoe.cs.autoquest.usability.evaluation.result.UsabilityDefectSeverityLevel;
-import de.ugoe.cs.autoquest.usability.evaluation.result.UsabilityDefect;
-import de.ugoe.cs.autoquest.usability.evaluation.result.UsabilityDefectFactory;
-import de.ugoe.cs.autoquest.usability.testutil.DummyUsabilityGuidlineDescriptionResolver;
-import de.ugoe.cs.autoquest.usability.testutil.DummyUsabilityRuleset;
-
-/**
- * <p>
- * TODO comment
- * </p>
- * 
- * @author Alexander Deicke
- */
-public class UsabilityEvaluationReportTest {
-
-    @Test(expected = NullPointerException.class)
-    public void usability_report_from_null_should_throw_exception() {
-        UsabilityEvaluationReport.from(null);
-    }
-
-    @Test
-    public void usability_report_from_empty_list_has_no_recommendations() {
-        UsabilityEvaluationReport evaluationReport =
-            UsabilityEvaluationReport.from(Collections.<UsabilityDefect> emptyList());
-        assertThat(evaluationReport).isNotNull().has(noUsabilityGuidlineRecommendations());
-    }
-
-    @Test
-    public void usability_report_from_non_empty_list_has_recommendations() {
-        List<UsabilityDefect> guidlineRecommendations =
-            Lists
-                .newArrayList(new UsabilityDefectFactory(
-                                                         new DummyUsabilityGuidlineDescriptionResolver())
-                    .createUsabilityGuidlineRecommendation(UsabilityDefectSeverityLevel.INFO,
-                                                           new DummyUsabilityRuleset()
-                                                               .evaluationRules().iterator().next(),
-                                                           Collections.<String, String> emptyMap()));
-        UsabilityEvaluationReport evaluationReport =
-            UsabilityEvaluationReport.from(guidlineRecommendations);
-        assertThat(evaluationReport).isNotNull().has(usabilityGuidlineRecommendations());
-    }
-
-}
