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