Changeset 7932
- Timestamp:
- 05/30/12 16:32:26 (12 years ago)
- Location:
- trunk/sources
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab 3.3 Tests.sln
r7915 r7932 6 6 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4880EC01-2CAD-4291-BBC1-B269AD67D4FA}" 7 7 ProjectSection(SolutionItems) = preProject 8 HeuristicLab 3.3 Tests.vsmdi = HeuristicLab 3.3 Tests.vsmdi 8 9 LocalTestRun.testrunconfig = LocalTestRun.testrunconfig 9 10 EndProjectSection 10 11 EndProject 11 12 Global 13 GlobalSection(TestCaseManagementSettings) = postSolution 14 CategoryFile = HeuristicLab 3.3 Tests.vsmdi 15 EndGlobalSection 12 16 GlobalSection(SolutionConfigurationPlatforms) = preSolution 13 17 Debug|Any CPU = Debug|Any CPU -
trunk/sources/HeuristicLab 3.3.sln
r7921 r7932 7 7 ConfigMerger.exe = ConfigMerger.exe 8 8 ..\documentation\License\gpl-3.0.txt = ..\documentation\License\gpl-3.0.txt 9 HeuristicLab 3.3.vsmdi = HeuristicLab 3.3.vsmdi10 9 MergeConfigs.cmd = MergeConfigs.cmd 11 10 PreBuildEvent.cmd = PreBuildEvent.cmd … … 318 317 EndProject 319 318 Global 320 GlobalSection(TestCaseManagementSettings) = postSolution321 CategoryFile = HeuristicLab 3.3.vsmdi322 EndGlobalSection323 319 GlobalSection(SolutionConfigurationPlatforms) = preSolution 324 320 Debug|Any CPU = Debug|Any CPU -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/NPointCrossoverTest.cs
r7259 r7932 87 87 [TestMethod()] 88 88 [DeploymentItem("HeuristicLab.Encodings.BinaryVectorEncoding-3.3.dll")] 89 public void SinglePointCrossoverCrossTest() {89 public void NPointCrossoverCrossTest() { 90 90 NPointCrossover_Accessor target = new NPointCrossover_Accessor(new PrivateObject(typeof(NPointCrossover))); 91 91 ItemArray<BinaryVector> parents; … … 122 122 ///</summary> 123 123 [TestMethod()] 124 public void SinglePointCrossoverApplyTest() {124 public void NPointCrossoverApplyTest() { 125 125 TestRandom random = new TestRandom(); 126 126 BinaryVector parent1, parent2, expected, actual; … … 176 176 ///</summary> 177 177 [TestMethod()] 178 public void SinglePointCrossoverConstructorTest() {178 public void NPointCrossoverConstructorTest() { 179 179 NPointCrossover target = new NPointCrossover(); 180 180 }
Note: See TracChangeset
for help on using the changeset viewer.