Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.IntegerVectorEncoding-3.3/SinglePointCrossoverTest.cs @ 9766

Last change on this file since 9766 was 9766, checked in by mkommend, 11 years ago

#2088: Removed useless brackets in the TestMethod attribute and added test categories and properties for SymExpTreeEncoding unit test.

File size: 5.3 KB
RevLine 
[3742]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3742]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
[4068]22using HeuristicLab.Core;
[3742]23using HeuristicLab.Encodings.IntegerVectorEncoding;
[6891]24using HeuristicLab.Tests;
[3032]25using Microsoft.VisualStudio.TestTools.UnitTesting;
26
[9764]27namespace HeuristicLab.Encodings.IntegerVectorEncoding.Tests {
[3032]28
29
30  /// <summary>
31  ///This is a test class for SinglePointCrossoverTest and is intended
32  ///to contain all SinglePointCrossoverTest Unit Tests
33  ///</summary>
34  [TestClass()]
35  public class SinglePointCrossoverTest {
36
37
38    private TestContext testContextInstance;
39
40    /// <summary>
41    ///Gets or sets the test context which provides
42    ///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 attributes
54    //
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 class
58    //[ClassInitialize()]
59    //public static void MyClassInitialize(TestContext testContext)
60    //{
61    //}
62    //
63    //Use ClassCleanup to run code after all tests in a class have run
64    //[ClassCleanup()]
65    //public static void MyClassCleanup()
66    //{
67    //}
68    //
69    //Use TestInitialize to run code before running each test
70    //[TestInitialize()]
71    //public void MyTestInitialize()
72    //{
73    //}
74    //
75    //Use TestCleanup to run code after each test has run
76    //[TestCleanup()]
77    //public void MyTestCleanup()
78    //{
79    //}
80    //
81    #endregion
82
83    /// <summary>
84    ///A test for Cross
85    ///</summary>
[9766]86    [TestMethod]
[3053]87    [DeploymentItem("HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll")]
[3032]88    public void SinglePointCrossoverCrossTest() {
89      SinglePointCrossover_Accessor target = new SinglePointCrossover_Accessor(new PrivateObject(typeof(SinglePointCrossover)));
[3059]90      ItemArray<IntegerVector> parents;
[3032]91      TestRandom random = new TestRandom();
92      bool exceptionFired;
93      // The following test checks if there is an exception when there are more than 2 parents
94      random.Reset();
[3059]95      parents = new ItemArray<IntegerVector>(new IntegerVector[] { new IntegerVector(5), new IntegerVector(6), new IntegerVector(4) });
[3032]96      exceptionFired = false;
97      try {
[3059]98        IntegerVector actual;
[3032]99        actual = target.Cross(random, parents);
100      }
101      catch (System.ArgumentException) {
102        exceptionFired = true;
103      }
104      Assert.IsTrue(exceptionFired);
105      // The following test checks if there is an exception when there are less than 2 parents
106      random.Reset();
[3059]107      parents = new ItemArray<IntegerVector>(new IntegerVector[] { new IntegerVector(4) });
[3032]108      exceptionFired = false;
109      try {
[3059]110        IntegerVector actual;
[3032]111        actual = target.Cross(random, parents);
[4068]112      }
113      catch (System.ArgumentException) {
[3032]114        exceptionFired = true;
115      }
116      Assert.IsTrue(exceptionFired);
117    }
118
119    /// <summary>
120    ///A test for Apply
121    ///</summary>
[9766]122    [TestMethod]
[3032]123    public void SinglePointCrossoverApplyTest() {
124      TestRandom random = new TestRandom();
[3059]125      IntegerVector parent1, parent2, expected, actual;
[3032]126      bool exceptionFired;
127      // The following test is not based on published examples
128      random.Reset();
129      random.IntNumbers = new int[] { 3 };
[3059]130      parent1 = new IntegerVector(new int[] { 2, 2, 3, 5, 1 });
131      parent2 = new IntegerVector(new int[] { 4, 1, 3, 2, 8 });
132      expected = new IntegerVector(new int[] { 2, 2, 3, 2, 8 });
[3032]133      actual = SinglePointCrossover.Apply(random, parent1, parent2);
[3061]134      Assert.IsTrue(Auxiliary.IntegerVectorIsEqualByPosition(actual, expected));
[3032]135      // The following test is not based on published examples
136      random.Reset();
137      random.IntNumbers = new int[] { 2 };
[3059]138      parent1 = new IntegerVector(new int[] { 2, 2, 3, 5, 1, 9 }); // this parent is longer
139      parent2 = new IntegerVector(new int[] { 4, 1, 3, 2, 8 });
[3032]140      exceptionFired = false;
141      try {
142        actual = SinglePointCrossover.Apply(random, parent1, parent2);
[4068]143      }
144      catch (System.ArgumentException) {
[3032]145        exceptionFired = true;
146      }
147      Assert.IsTrue(exceptionFired);
148    }
149
150    /// <summary>
151    ///A test for SinglePointCrossover Constructor
152    ///</summary>
[9766]153    [TestMethod]
[3032]154    public void SinglePointCrossoverConstructorTest() {
155      SinglePointCrossover target = new SinglePointCrossover();
156    }
157  }
158}
Note: See TracBrowser for help on using the repository browser.