source: trunk/autoquest-core-tasktrees-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/testutils/Utilities.java @ 922

Last change on this file since 922 was 922, checked in by sherbold, 12 years ago
  • renaming of packages from de.ugoe.cs.quest to de.ugoe.cs.autoquest
File size: 667 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.testutils;
2
3import de.ugoe.cs.autoquest.tasktrees.nodeequality.NodeEqualityRuleManager;
4
5/**
6 * TODO comment
7 *
8 * @version $Revision: $ $Date: 02.04.2012$
9 * @author 2012, last modified by $Author: patrick$
10 */
11public class Utilities {
12   
13    /** */
14    private static final NodeEqualityRuleManager NODE_EQUALITY_RULE_MANAGER =
15        new NodeEqualityRuleManager();
16
17    static {
18        NODE_EQUALITY_RULE_MANAGER.init();
19    }
20
21    /**
22     * TODO: comment
23     *
24     * @return
25     */
26    public static NodeEqualityRuleManager getNodeEqualityRuleManagerForTests() {
27        return NODE_EQUALITY_RULE_MANAGER;
28    }
29
30}
Note: See TracBrowser for help on using the repository browser.