Changeset 9885 for stable/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/BealeEvaluatorTest.cs
- Timestamp:
- 08/20/13 17:03:31 (11 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 9764-9775,9777-9778,9782-9786,9792,9803,9806-9807,9810
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Tests merged: 9764-9775,9777-9778,9782-9786,9792,9803,9806
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/BealeEvaluatorTest.cs
r9456 r9885 21 21 22 22 using HeuristicLab.Encodings.RealVectorEncoding; 23 using HeuristicLab.Problems.TestFunctions;24 23 using Microsoft.VisualStudio.TestTools.UnitTesting; 25 24 26 namespace HeuristicLab.Problems.TestFunctions_33.Tests { 27 28 25 namespace HeuristicLab.Problems.TestFunctions.Tests { 29 26 /// <summary> 30 27 ///This is a test class for BealeEvaluatorTest and is intended … … 33 30 [TestClass()] 34 31 public class BealeEvaluatorTest { 35 36 37 private TestContext testContextInstance;38 39 /// <summary>40 ///Gets or sets the test context which provides41 ///information about and functionality for the current test run.42 ///</summary>43 public TestContext TestContext {44 get {45 return testContextInstance;46 }47 set {48 testContextInstance = value;49 }50 }51 52 #region Additional test attributes53 //54 //You can use the following additional attributes as you write your tests:55 //56 //Use ClassInitialize to run code before running the first test in the class57 //[ClassInitialize()]58 //public static void MyClassInitialize(TestContext testContext)59 //{60 //}61 //62 //Use ClassCleanup to run code after all tests in a class have run63 //[ClassCleanup()]64 //public static void MyClassCleanup()65 //{66 //}67 //68 //Use TestInitialize to run code before running each test69 //[TestInitialize()]70 //public void MyTestInitialize()71 //{72 //}73 //74 //Use TestCleanup to run code after each test has run75 //[TestCleanup()]76 //public void MyTestCleanup()77 //{78 //}79 //80 #endregion81 82 32 /// <summary> 83 33 ///A test for EvaluateFunction 84 34 ///</summary> 85 [TestMethod()] 86 [DeploymentItem("HeuristicLab.Problems.TestFunctions-3.3.dll")] 35 [TestMethod] 36 [TestCategory("Problems.TestFunctions")] 37 [TestProperty("Time", "short")] 87 38 public void BealeEvaluateFunctionTest() { 88 39 BealeEvaluator_Accessor target = new BealeEvaluator_Accessor();
Note: See TracChangeset
for help on using the changeset viewer.