Changeset 11202 for branches/HiveStatistics/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/RastriginEvaluatorTest.cs
- Timestamp:
- 07/18/14 12:01:13 (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.dll 10 11 HeuristicLab 3.3.5.1.ReSharper.user 11 12 HeuristicLab 3.3.6.0.ReSharper.user 12 13 HeuristicLab.4.5.resharper.user 13 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 14 16 HeuristicLab.resharper.user 15 17 ProtoGen.exe … … 17 19 _ReSharper.HeuristicLab 18 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 19 22 _ReSharper.HeuristicLab.ExtLibs 20 23 bin 21 24 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests23 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
r9444 r11202 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 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;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 RastriginEvaluatorTest and is intended … … 33 30 [TestClass()] 34 31 public class RastriginEvaluatorTest { 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 RastriginEvaluateFunctionTest() { 88 39 RastriginEvaluator_Accessor target = new RastriginEvaluator_Accessor();
Note: See TracChangeset
for help on using the changeset viewer.