1 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
2 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HeuristicLab.Data;
|
---|
5 | using HeuristicLab.Parameters;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Encodings.RealVectorEncoding_33.Tests {
|
---|
8 |
|
---|
9 |
|
---|
10 | /// <summary>
|
---|
11 | ///This is a test class for LocalCrossoverTest and is intended
|
---|
12 | ///to contain all LocalCrossoverTest Unit Tests
|
---|
13 | ///</summary>
|
---|
14 | [TestClass()]
|
---|
15 | public class LocalCrossoverTest {
|
---|
16 |
|
---|
17 |
|
---|
18 | private TestContext testContextInstance;
|
---|
19 |
|
---|
20 | /// <summary>
|
---|
21 | ///Gets or sets the test context which provides
|
---|
22 | ///information about and functionality for the current test run.
|
---|
23 | ///</summary>
|
---|
24 | public TestContext TestContext {
|
---|
25 | get {
|
---|
26 | return testContextInstance;
|
---|
27 | }
|
---|
28 | set {
|
---|
29 | testContextInstance = value;
|
---|
30 | }
|
---|
31 | }
|
---|
32 |
|
---|
33 | #region Additional test attributes
|
---|
34 | //
|
---|
35 | //You can use the following additional attributes as you write your tests:
|
---|
36 | //
|
---|
37 | //Use ClassInitialize to run code before running the first test in the class
|
---|
38 | //[ClassInitialize()]
|
---|
39 | //public static void MyClassInitialize(TestContext testContext)
|
---|
40 | //{
|
---|
41 | //}
|
---|
42 | //
|
---|
43 | //Use ClassCleanup to run code after all tests in a class have run
|
---|
44 | //[ClassCleanup()]
|
---|
45 | //public static void MyClassCleanup()
|
---|
46 | //{
|
---|
47 | //}
|
---|
48 | //
|
---|
49 | //Use TestInitialize to run code before running each test
|
---|
50 | //[TestInitialize()]
|
---|
51 | //public void MyTestInitialize()
|
---|
52 | //{
|
---|
53 | //}
|
---|
54 | //
|
---|
55 | //Use TestCleanup to run code after each test has run
|
---|
56 | //[TestCleanup()]
|
---|
57 | //public void MyTestCleanup()
|
---|
58 | //{
|
---|
59 | //}
|
---|
60 | //
|
---|
61 | #endregion
|
---|
62 |
|
---|
63 | /// <summary>
|
---|
64 | ///A test for Cross
|
---|
65 | ///</summary>
|
---|
66 | [TestMethod()]
|
---|
67 | [DeploymentItem("HeuristicLab.Encodings.RealVectorEncoding-3.3.dll")]
|
---|
68 | public void LocalCrossoverCrossTest() {
|
---|
69 | LocalCrossover_Accessor target = new LocalCrossover_Accessor(new PrivateObject(typeof(LocalCrossover)));
|
---|
70 | ItemArray<RealVector> parents;
|
---|
71 | TestRandom random = new TestRandom();
|
---|
72 | bool exceptionFired;
|
---|
73 | // The following test checks if there is an exception when there are more than 2 parents
|
---|
74 | random.Reset();
|
---|
75 | parents = new ItemArray<RealVector>(new RealVector[] { new RealVector(5), new RealVector(6), new RealVector(4) });
|
---|
76 | exceptionFired = false;
|
---|
77 | try {
|
---|
78 | RealVector actual;
|
---|
79 | actual = target.Cross(random, parents);
|
---|
80 | }
|
---|
81 | catch (System.ArgumentException) {
|
---|
82 | exceptionFired = true;
|
---|
83 | }
|
---|
84 | Assert.IsTrue(exceptionFired);
|
---|
85 | // The following test checks if there is an exception when there are less than 2 parents
|
---|
86 | random.Reset();
|
---|
87 | parents = new ItemArray<RealVector>(new RealVector[] { new RealVector(4) });
|
---|
88 | exceptionFired = false;
|
---|
89 | try {
|
---|
90 | RealVector actual;
|
---|
91 | actual = target.Cross(random, parents);
|
---|
92 | } catch (System.ArgumentException) {
|
---|
93 | exceptionFired = true;
|
---|
94 | }
|
---|
95 | Assert.IsTrue(exceptionFired);
|
---|
96 | }
|
---|
97 |
|
---|
98 | /// <summary>
|
---|
99 | ///A test for Apply
|
---|
100 | ///</summary>
|
---|
101 | [TestMethod()]
|
---|
102 | public void LocalCrossoverApplyTest() {
|
---|
103 | TestRandom random = new TestRandom();
|
---|
104 | RealVector parent1, parent2, expected, actual;
|
---|
105 | bool exceptionFired;
|
---|
106 | // The following test is not based on published examples
|
---|
107 | random.Reset();
|
---|
108 | random.DoubleNumbers = new double[] { 0.3, 0.1, 0.2, 0.4, 0.23 };
|
---|
109 | parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1 });
|
---|
110 | parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
|
---|
111 | expected = new RealVector(new double[] { 0.34, 0.11, 0.3, 0.32, 0.639 });
|
---|
112 | actual = LocalCrossover.Apply(random, parent1, parent2);
|
---|
113 | Assert.IsTrue(Auxiliary.RealVectorIsAlmostEqualByPosition(actual, expected));
|
---|
114 | // The following test is not based on published examples
|
---|
115 | random.Reset();
|
---|
116 | random.DoubleNumbers = new double[] { 0.3, 0.1, 0.2, 0.4, 0.23, 0.5};
|
---|
117 | parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1, 0.9 }); // this parent is longer
|
---|
118 | parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
|
---|
119 | exceptionFired = false;
|
---|
120 | try {
|
---|
121 | actual = LocalCrossover.Apply(random, parent1, parent2);
|
---|
122 | } catch (System.ArgumentException) {
|
---|
123 | exceptionFired = true;
|
---|
124 | }
|
---|
125 | Assert.IsTrue(exceptionFired);
|
---|
126 | }
|
---|
127 |
|
---|
128 | /// <summary>
|
---|
129 | ///A test for LocalCrossover Constructor
|
---|
130 | ///</summary>
|
---|
131 | [TestMethod()]
|
---|
132 | public void LocalCrossoverConstructorTest() {
|
---|
133 | LocalCrossover target = new LocalCrossover();
|
---|
134 | }
|
---|
135 | }
|
---|
136 | }
|
---|