Changeset 15280 for branches/Async/HeuristicLab.Tests/HeuristicLab-3.3
- Timestamp:
- 07/23/17 00:52:14 (7 years ago)
- Location:
- branches/Async
- Files:
-
- 1 deleted
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/Async
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Tests
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Tests (added) merged: 13393,13395,13397,13484,13510,13525,13529,13648,13651,13654,13661,13676,13708,13721,13895
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Tests/HeuristicLab-3.3/CollectObjectGraphTest.cs
r15065 r15280 40 40 get { return testContextInstance; } 41 41 set { testContextInstance = value; } 42 } 43 44 [TestMethod] 45 [Description("Verify that the object graph traversal is working by checking the number of objects after traversal.")] 46 [TestCategory("General")] 47 [TestCategory("Essential")] 48 [TestProperty("Time", "medium")] 49 public void TestObjectGraphTraversal() { 50 GeneticAlgorithm ga = (GeneticAlgorithm)XmlParser.Deserialize(@"Test Resources\GA_SymbReg.hl"); 51 var objects = ga.GetObjectGraphObjects().ToList(); 52 53 // Should be 3982, but count may change slightly as members are added or removed 54 Assert.IsTrue(objects.Count > 1, "Number of objects in the object graph seems to small."); 42 55 } 43 56 -
branches/Async/HeuristicLab.Tests/HeuristicLab-3.3/DeepCloneableCloningTest.cs
r12722 r15280 46 46 typeof (HeuristicLab.Problems.DataAnalysis.ClassificationEnsembleSolution), 47 47 typeof (HeuristicLab.Problems.DataAnalysis.RegressionEnsembleSolution), 48 typeof (HeuristicLab.Problems.Orienteering.DistanceMatrix) 48 typeof (HeuristicLab.Problems.Orienteering.DistanceMatrix), 49 typeof (HeuristicLab.Problems.PTSP.DistanceMatrix) 49 50 }; 50 51 excludedTypes.Add(typeof(SymbolicExpressionGrammar).Assembly.GetType("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.EmptySymbolicExpressionTreeGrammar"));
Note: See TracChangeset
for help on using the changeset viewer.