Changeset 11205 for branches/HiveStatistics/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/SinglePointCrossoverTest.cs
- Timestamp:
- 07/18/14 13:44:53 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:ignore
-
old new 8 8 FxCopResults.txt 9 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll 10 11 HeuristicLab 3.3.5.1.ReSharper.user 11 12 HeuristicLab 3.3.6.0.ReSharper.user 12 13 HeuristicLab.4.5.resharper.user 13 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 14 16 HeuristicLab.resharper.user 15 17 ProtoGen.exe … … 17 19 _ReSharper.HeuristicLab 18 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 19 22 _ReSharper.HeuristicLab.ExtLibs 20 23 bin 21 24 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HiveStatistics/sources/HeuristicLab.Tests
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/SinglePointCrossoverTest.cs
r11203 r11205 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 22 using System; 22 23 using HeuristicLab.Core; 23 using HeuristicLab.Encodings.BinaryVectorEncoding;24 24 using HeuristicLab.Tests; 25 25 using Microsoft.VisualStudio.TestTools.UnitTesting; 26 26 27 namespace HeuristicLab.Encodings.BinaryVectorEncoding_33.Tests { 28 29 27 namespace HeuristicLab.Encodings.BinaryVectorEncoding.Tests { 30 28 /// <summary> 31 29 ///This is a test class for SinglePointCrossoverTest and is intended … … 34 32 [TestClass()] 35 33 public class SinglePointCrossoverTest { 36 37 38 private TestContext testContextInstance;39 40 /// <summary>41 ///Gets or sets the test context which provides42 ///information about and functionality for the current test run.43 ///</summary>44 public TestContext TestContext {45 get {46 return testContextInstance;47 }48 set {49 testContextInstance = value;50 }51 }52 53 #region Additional test attributes54 //55 //You can use the following additional attributes as you write your tests:56 //57 //Use ClassInitialize to run code before running the first test in the class58 //[ClassInitialize()]59 //public static void MyClassInitialize(TestContext testContext)60 //{61 //}62 //63 //Use ClassCleanup to run code after all tests in a class have run64 //[ClassCleanup()]65 //public static void MyClassCleanup()66 //{67 //}68 //69 //Use TestInitialize to run code before running each test70 //[TestInitialize()]71 //public void MyTestInitialize()72 //{73 //}74 //75 //Use TestCleanup to run code after each test has run76 //[TestCleanup()]77 //public void MyTestCleanup()78 //{79 //}80 //81 #endregion82 83 34 /// <summary> 84 35 ///A test for Cross 85 36 ///</summary> 86 [TestMethod()] 87 [DeploymentItem("HeuristicLab.Encodings.BinaryVectorEncoding-3.3.dll")] 37 [TestMethod] 38 [TestCategory("Encodings.BinaryVector")] 39 [TestProperty("Time", "short")] 88 40 public void SinglePointCrossoverCrossTest() { 89 41 SinglePointCrossover_Accessor target = new SinglePointCrossover_Accessor(new PrivateObject(typeof(SinglePointCrossover))); … … 98 50 BinaryVector actual; 99 51 actual = target.Cross(random, parents); 100 } 101 catch (System.ArgumentException) { 52 } catch (ArgumentException) { 102 53 exceptionFired = true; 103 54 } … … 110 61 BinaryVector actual; 111 62 actual = target.Cross(random, parents); 112 } 113 catch (System.ArgumentException) { 63 } catch (ArgumentException) { 114 64 exceptionFired = true; 115 65 } 116 66 Assert.IsTrue(exceptionFired); 117 67 } 118 119 /// <summary>120 ///A test for SinglePointCrossover Constructor121 ///</summary>122 [TestMethod()]123 public void SinglePointCrossoverConstructorTest() {124 SinglePointCrossover target = new SinglePointCrossover();125 }126 68 } 127 69 }
Note: See TracChangeset
for help on using the changeset viewer.