Changeset 9770 for trunk/sources
- Timestamp:
- 07/26/13 13:03:41 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/AllArchitectureAlteringOperatorsTest.cs
r9764 r9770 24 24 using System.Diagnostics; 25 25 using HeuristicLab.Data; 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;27 26 using HeuristicLab.Random; 28 27 using Microsoft.VisualStudio.TestTools.UnitTesting; … … 37 36 private TestContext testContextInstance; 38 37 39 /// <summary> 40 ///Gets or sets the test context which provides 41 ///information about and functionality for the current test run. 42 ///</summary> 43 public TestContext TestContext { 44 get { 45 return testContextInstance; 46 } 47 set { 48 testContextInstance = value; 49 } 50 } 51 52 [TestMethod()] 38 [TestMethod] 53 39 [Timeout(3600000)] 40 [TestCategory("Encodings.SymbolicExpressionTree")] 41 [TestProperty("Time", "long")] 54 42 public void AllArchitectureAlteringOperatorsDistributionTest() { 55 43 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ArgumentCreaterTest.cs
r9764 r9770 35 35 private TestContext testContextInstance; 36 36 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()] 37 [TestMethod] 38 [TestCategory("Encodings.SymbolicExpressionTree")] 39 [TestProperty("Time", "long")] 51 40 public void ArgumentCreaterDistributionsTest() { 52 41 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ArgumentDeleterTest.cs
r9764 r9770 35 35 private TestContext testContextInstance; 36 36 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()] 37 [TestMethod] 38 [TestCategory("Encodings.SymbolicExpressionTree")] 39 [TestProperty("Time", "long")] 51 40 public void ArgumentDeleterDistributionsTest() { 52 41 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ArgumentDuplicaterTest.cs
r9764 r9770 35 35 private TestContext testContextInstance; 36 36 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()] 37 [TestMethod] 38 [TestCategory("Encodings.SymbolicExpressionTree")] 39 [TestProperty("Time", "long")] 51 40 public void ArgumentDuplicaterDistributionsTest() { 52 41 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ChangeNodeTypeManipulationTest.cs
r9764 r9770 34 34 private TestContext testContextInstance; 35 35 36 /// <summary> 37 ///Gets or sets the test context which provides 38 ///information about and functionality for the current test run. 39 ///</summary> 40 public TestContext TestContext { 41 get { 42 return testContextInstance; 43 } 44 set { 45 testContextInstance = value; 46 } 47 } 48 49 [TestMethod()] 36 [TestMethod] 37 [TestCategory("Encodings.SymbolicExpressionTree")] 38 [TestProperty("Time", "medium")] 50 39 public void ChangeNodeTypeManipulationDistributionsTest() { 51 40 SymbolicExpressionTreeStringFormatter formatter = new SymbolicExpressionTreeStringFormatter(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/FullTreeCreatorTest.cs
r9764 r9770 35 35 private TestContext testContextInstance; 36 36 37 /// <summary>38 ///Gets or sets the test context which provides39 ///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 37 50 [TestMethod()] 38 [TestMethod] 39 [TestCategory("Encodings.SymbolicExpressionTree")] 40 [TestProperty("Time", "long")] 51 41 public void FullTreeCreatorDistributionsTest() { 52 42 var randomTrees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/GrowTreeCreatorTest.cs
r9764 r9770 35 35 private TestContext testContextInstance; 36 36 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()] 37 [TestMethod] 38 [TestCategory("Encodings.SymbolicExpressionTree")] 39 [TestProperty("Time", "long")] 51 40 public void GrowTreeCreatorDistributionsTest() { 52 41 var randomTrees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ProbabilisticTreeCreaterTest.cs
r9764 r9770 35 35 private TestContext testContextInstance; 36 36 37 /// <summary>38 ///Gets or sets the test context which provides39 ///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 37 [TestMethod()] 38 [TestCategory("Encodings.SymbolicExpressionTree")] 39 [TestProperty("Time", "long")] 51 40 public void ProbabilisticTreeCreaterDistributionsTest() { 52 41 var randomTrees = new List<ISymbolicExpressionTree>(); … … 84 73 85 74 [TestMethod] 75 [TestCategory("Encodings.SymbolicExpressionTree")] 76 [TestProperty("Time", "short")] 86 77 public void ProbabilisticTreeCreatorSpecificTreeSizesTest() { 87 78 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ReplaceBranchManipulationTest.cs
r9764 r9770 34 34 private TestContext testContextInstance; 35 35 36 /// <summary> 37 ///Gets or sets the test context which provides 38 ///information about and functionality for the current test run. 39 ///</summary> 40 public TestContext TestContext { 41 get { 42 return testContextInstance; 43 } 44 set { 45 testContextInstance = value; 46 } 47 } 48 49 [TestMethod()] 36 [TestMethod] 37 [TestCategory("Encodings.SymbolicExpressionTree")] 38 [TestProperty("Time", "long")] 50 39 public void ReplaceBranchManipulationDistributionsTest() { 51 40 SymbolicExpressionTreeStringFormatter formatter = new SymbolicExpressionTreeStringFormatter(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/SubroutineCreaterTest.cs
r9764 r9770 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;25 24 using HeuristicLab.Random; 26 25 using Microsoft.VisualStudio.TestTools.UnitTesting; … … 34 33 private TestContext testContextInstance; 35 34 36 /// <summary> 37 ///Gets or sets the test context which provides 38 ///information about and functionality for the current test run. 39 ///</summary> 40 public TestContext TestContext { 41 get { 42 return testContextInstance; 43 } 44 set { 45 testContextInstance = value; 46 } 47 } 48 49 [TestMethod()] 35 [TestMethod] 36 [TestCategory("Encodings.SymbolicExpressionTree")] 37 [TestProperty("Time", "long")] 50 38 public void SubroutineCreaterDistributionsTest() { 51 39 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/SubroutineDeleterTest.cs
r9764 r9770 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; … … 35 34 private TestContext testContextInstance; 36 35 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()] 36 [TestMethod] 37 [TestCategory("Encodings.SymbolicExpressionTree")] 38 [TestProperty("Time", "long")] 51 39 public void SubroutineDeleterDistributionsTest() { 52 40 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/SubroutineDuplicaterTest.cs
r9764 r9770 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; … … 35 34 private TestContext testContextInstance; 36 35 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()] 36 [TestMethod] 37 [TestCategory("Encodings.SymbolicExpressionTree")] 38 [TestProperty("Time", "long")] 51 39 public void SubroutineDuplicaterDistributionsTest() { 52 40 var trees = new List<ISymbolicExpressionTree>(); -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/SubtreeCrossoverTest.cs
r9764 r9770 23 23 using System.Collections.Generic; 24 24 using System.Diagnostics; 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;26 25 using HeuristicLab.Random; 27 26 using Microsoft.VisualStudio.TestTools.UnitTesting; … … 33 32 private TestContext testContextInstance; 34 33 35 /// <summary> 36 ///Gets or sets the test context which provides 37 ///information about and functionality for the current test run. 38 ///</summary> 39 public TestContext TestContext { 40 get { 41 return testContextInstance; 42 } 43 set { 44 testContextInstance = value; 45 } 46 } 47 48 [TestMethod()] 34 [TestMethod] 35 [TestCategory("Encodings.SymbolicExpressionTree")] 36 [TestProperty("Time", "long")] 49 37 public void SubtreeCrossoverDistributionsTest() { 50 38 int generations = 5;
Note: See TracChangeset
for help on using the changeset viewer.