Changeset 11203 for branches/HiveStatistics/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/RastriginEvaluatorTest.cs
- Timestamp:
- 07/18/14 12:35:00 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:ignore
-
old new 8 8 FxCopResults.txt 9 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll11 10 HeuristicLab 3.3.5.1.ReSharper.user 12 11 HeuristicLab 3.3.6.0.ReSharper.user 13 12 HeuristicLab.4.5.resharper.user 14 13 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development16 14 HeuristicLab.resharper.user 17 15 ProtoGen.exe … … 19 17 _ReSharper.HeuristicLab 20 18 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests22 19 _ReSharper.HeuristicLab.ExtLibs 23 20 bin 24 21 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HiveStatistics/sources/HeuristicLab.Tests
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/RastriginEvaluatorTest.cs
r11202 r11203 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Encodings.RealVectorEncoding; 23 using HeuristicLab.Problems.TestFunctions; 23 24 using Microsoft.VisualStudio.TestTools.UnitTesting; 24 25 25 namespace HeuristicLab.Problems.TestFunctions.Tests { 26 namespace HeuristicLab.Problems.TestFunctions_33.Tests { 27 28 26 29 /// <summary> 27 30 ///This is a test class for RastriginEvaluatorTest and is intended … … 30 33 [TestClass()] 31 34 public class RastriginEvaluatorTest { 35 36 37 private TestContext testContextInstance; 38 39 /// <summary> 40 ///Gets or sets the test context which provides 41 ///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 attributes 53 // 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 class 57 //[ClassInitialize()] 58 //public static void MyClassInitialize(TestContext testContext) 59 //{ 60 //} 61 // 62 //Use ClassCleanup to run code after all tests in a class have run 63 //[ClassCleanup()] 64 //public static void MyClassCleanup() 65 //{ 66 //} 67 // 68 //Use TestInitialize to run code before running each test 69 //[TestInitialize()] 70 //public void MyTestInitialize() 71 //{ 72 //} 73 // 74 //Use TestCleanup to run code after each test has run 75 //[TestCleanup()] 76 //public void MyTestCleanup() 77 //{ 78 //} 79 // 80 #endregion 81 32 82 /// <summary> 33 83 ///A test for EvaluateFunction 34 84 ///</summary> 35 [TestMethod] 36 [TestCategory("Problems.TestFunctions")] 37 [TestProperty("Time", "short")] 85 [TestMethod()] 86 [DeploymentItem("HeuristicLab.Problems.TestFunctions-3.3.dll")] 38 87 public void RastriginEvaluateFunctionTest() { 39 88 RastriginEvaluator_Accessor target = new RastriginEvaluator_Accessor();
Note: See TracChangeset
for help on using the changeset viewer.