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

Last change on this file since 445 was 445, checked in by pharms, 12 years ago

Initial import.

File size: 1.4 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: TestUtils.java,v $
3// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 02.04.2012 $
4// Project   : TaskTreeTestUtils
5// Creation  : 2012 by patrick
6// Copyright : Patrick Harms, 2012
7//-------------------------------------------------------------------------------------------------
8package de.ugoe.cs.quest.tasktrees.testutils;
9
10import de.ugoe.cs.quest.tasktrees.nodeequality.NodeEqualityRuleManager;
11
12//-------------------------------------------------------------------------------------------------
13/**
14 * TODO comment
15 *
16 * @version $Revision: $ $Date: 02.04.2012$
17 * @author 2012, last modified by $Author: patrick$
18 */
19//-------------------------------------------------------------------------------------------------
20public class Utilities
21{
22  /** */
23  private static final NodeEqualityRuleManager NODE_EQUALITY_RULE_MANAGER =
24    new NodeEqualityRuleManager();
25 
26  static
27  {
28    NODE_EQUALITY_RULE_MANAGER.init();
29  }
30
31  //-----------------------------------------------------------------------------------------------
32  /**
33   * TODO: comment
34   *
35   * @return
36   */
37  //-----------------------------------------------------------------------------------------------
38  public static NodeEqualityRuleManager getNodeEqualityRuleManagerForTests()
39  {
40    return NODE_EQUALITY_RULE_MANAGER;
41  }
42
43}
Note: See TracBrowser for help on using the repository browser.