[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 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 |
|
---|
| 22 | using HeuristicLab.Core;
|
---|
[6406] | 23 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
| 24 | using HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix;
|
---|
[8888] | 25 | using HeuristicLab.Tests;
|
---|
[6406] | 26 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
| 27 |
|
---|
[8888] | 28 | namespace HeuristicLab.Encodings.ScheduleEncoding_33.Tests {
|
---|
[6406] | 29 |
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | ///This is a test class for JSMJOXCrossoverTest and is intended
|
---|
| 33 | ///to contain all JSMJOXCrossoverTest Unit Tests
|
---|
| 34 | ///</summary>
|
---|
| 35 | [TestClass()]
|
---|
| 36 | public class JSMJOXCrossoverTest {
|
---|
| 37 |
|
---|
| 38 |
|
---|
| 39 | private TestContext testContextInstance;
|
---|
| 40 |
|
---|
| 41 | /// <summary>
|
---|
| 42 | ///Gets or sets the test context which provides
|
---|
| 43 | ///information about and functionality for the current test run.
|
---|
| 44 | ///</summary>
|
---|
| 45 | public TestContext TestContext {
|
---|
| 46 | get {
|
---|
| 47 | return testContextInstance;
|
---|
| 48 | }
|
---|
| 49 | set {
|
---|
| 50 | testContextInstance = value;
|
---|
| 51 | }
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | #region Additional test attributes
|
---|
| 55 | //
|
---|
| 56 | //You can use the following additional attributes as you write your tests:
|
---|
| 57 | //
|
---|
| 58 | //Use ClassInitialize to run code before running the first test in the class
|
---|
| 59 | //[ClassInitialize()]
|
---|
| 60 | //public static void MyClassInitialize(TestContext testContext)
|
---|
| 61 | //{
|
---|
| 62 | //}
|
---|
| 63 | //
|
---|
| 64 | //Use ClassCleanup to run code after all tests in a class have run
|
---|
| 65 | //[ClassCleanup()]
|
---|
| 66 | //public static void MyClassCleanup()
|
---|
| 67 | //{
|
---|
| 68 | //}
|
---|
| 69 | //
|
---|
| 70 | //Use TestInitialize to run code before running each test
|
---|
| 71 | //[TestInitialize()]
|
---|
| 72 | //public void MyTestInitialize()
|
---|
| 73 | //{
|
---|
| 74 | //}
|
---|
| 75 | //
|
---|
| 76 | //Use TestCleanup to run code after each test has run
|
---|
| 77 | //[TestCleanup()]
|
---|
| 78 | //public void MyTestCleanup()
|
---|
| 79 | //{
|
---|
| 80 | //}
|
---|
| 81 | //
|
---|
| 82 | #endregion
|
---|
| 83 |
|
---|
| 84 |
|
---|
| 85 | /// <summary>
|
---|
| 86 | ///A test for Apply
|
---|
| 87 | ///</summary>
|
---|
| 88 | [TestMethod()]
|
---|
| 89 | public void ApplyTest() {
|
---|
| 90 | IRandom random = new TestRandom(new int[] { 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1 }, null);
|
---|
| 91 | JSMEncoding p1 = TestUtils.CreateTestJSM1();
|
---|
| 92 | JSMEncoding p2 = TestUtils.CreateTestJSM2();
|
---|
| 93 | JSMEncoding expected = new JSMEncoding();
|
---|
| 94 | ItemList<Permutation> jsm = new ItemList<Permutation>();
|
---|
| 95 | for (int i = 0; i < 6; i++) {
|
---|
| 96 | jsm.Add(new Permutation(PermutationTypes.Absolute, new int[] { 5, 4, 3, 0, 1, 2 }));
|
---|
| 97 | }
|
---|
| 98 | expected.JobSequenceMatrix = jsm;
|
---|
| 99 |
|
---|
| 100 | JSMEncoding actual;
|
---|
| 101 | actual = JSMJOXCrossover.Apply(random, p1, p2);
|
---|
| 102 |
|
---|
| 103 | Assert.IsTrue(expected.Equals(actual));
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 | }
|
---|