- Timestamp:
- 07/30/14 15:23:40 (10 years ago)
- Location:
- branches/HeuristicLab.BottomUpTreeDistance/HeuristicLab.Tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BottomUpTreeDistance/HeuristicLab.Tests/BottomUpTreeSimilarityCalculatorTest.cs
r11239 r11244 54 54 } 55 55 56 [TestMethod] 57 [TestCategory("Problems.DataAnalysis.Symbolic")] 58 [TestProperty("Time", "short")] 56 59 private void TestMatchedNodes(string expr1, string expr2, int expected) { 57 60 var t1 = importer.Import(expr1); -
branches/HeuristicLab.BottomUpTreeDistance/HeuristicLab.Tests/MaxCommonSubtreeSimilarityCalculatorTest.cs
r11239 r11244 13 13 [TestClass] 14 14 public class MaxCommonSubtreeSimilarityCalculatorTest { 15 private ISymbolicExpressionTreeNodeSimilarityComparer comparer;15 private readonly ISymbolicExpressionTreeNodeSimilarityComparer comparer; 16 16 17 17 private const int N = 100; … … 22 22 comparer = new SymbolicExpressionTreeNodeSimilarityComparer(); 23 23 } 24 25 private TestContext testContextInstance;26 27 // /// <summary>28 // ///Gets or sets the test context which provides29 // ///information about and functionality for the current test run.30 // ///</summary>31 // public TestContext TestContext {32 // get {33 // return testContextInstance;34 // }35 // set {36 // testContextInstance = value;37 // }38 // }39 24 40 25 #region Additional test attributes … … 61 46 62 47 [TestMethod] 48 [TestCategory("Problems.DataAnalysis.Symbolic")] 49 [TestProperty("Time", "long")] 63 50 public void TestMaxCommonSubtreeSimilarityCalculatorPerformance() { 64 51 var grammar = new TypeCoherentExpressionGrammar();
Note: See TracChangeset
for help on using the changeset viewer.