Changeset 9885 for stable/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/SubroutineDeleterTest.cs
- Timestamp:
- 08/20/13 17:03:31 (11 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 9764-9775,9777-9778,9782-9786,9792,9803,9806-9807,9810
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Tests merged: 9764-9775,9777-9778,9782-9786,9792,9803,9806
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/SubroutineDeleterTest.cs
r9456 r9885 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;26 25 using HeuristicLab.Random; 27 26 using Microsoft.VisualStudio.TestTools.UnitTesting; 28 27 29 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding _34.Tests {28 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Tests { 30 29 [TestClass] 31 30 public class SubroutineDeleterTest { … … 33 32 private const int MAX_TREE_LENGTH = 100; 34 33 private const int MAX_TREE_DEPTH = 10; 35 private TestContext testContextInstance;36 34 37 /// <summary> 38 ///Gets or sets the test context which provides 39 ///information about and functionality for the current test run. 40 ///</summary> 41 public TestContext TestContext { 42 get { 43 return testContextInstance; 44 } 45 set { 46 testContextInstance = value; 47 } 48 } 49 50 [TestMethod()] 35 [TestMethod] 36 [TestCategory("Encodings.SymbolicExpressionTree")] 37 [TestProperty("Time", "long")] 51 38 public void SubroutineDeleterDistributionsTest() { 52 39 var trees = new List<ISymbolicExpressionTree>();
Note: See TracChangeset
for help on using the changeset viewer.