Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Tests/MatyasEvaluatorTest.cs @ 3852

Last change on this file since 3852 was 3781, checked in by abeham, 14 years ago

#934

  • added BestKnownSolution to test functions
  • added unit tests
File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22using HeuristicLab.Problems.TestFunctions;
23using Microsoft.VisualStudio.TestTools.UnitTesting;
24using HeuristicLab.Encodings.RealVectorEncoding;
25using HeuristicLab.Data;
26
27namespace HeuristicLab.Problems.TestFunctions_33.Tests
28{
29   
30   
31    /// <summary>
32    ///This is a test class for MatyasEvaluatorTest and is intended
33    ///to contain all MatyasEvaluatorTest Unit Tests
34    ///</summary>
35  [TestClass()]
36  public class MatyasEvaluatorTest {
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    /// <summary>
85    ///A test for EvaluateFunction
86    ///</summary>
87    [TestMethod()]
88    [DeploymentItem("HeuristicLab.Problems.TestFunctions-3.3.dll")]
89    public void MatyasEvaluateFunctionTest() {
90      MatyasEvaluator_Accessor target = new MatyasEvaluator_Accessor();
91      RealVector point = null;
92      double expected = target.BestKnownQuality;
93      double actual;
94      for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) {
95        point = target.GetBestKnownSolution(dimension);
96        actual = target.EvaluateFunction(point);
97        Assert.AreEqual(expected, actual);
98      }
99    }
100  }
101}
Note: See TracBrowser for help on using the repository browser.