Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/20/13 17:03:31 (11 years ago)
Author:
mkommend
Message:

#2088: Merged all changesets regarding the unit test restructuring in the stable branch.

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Tests

  • stable/HeuristicLab.Tests/HeuristicLab-3.3/CollectObjectGraphTest.cs

    r9456 r9885  
    3131using HeuristicLab.Persistence.Default.Xml;
    3232using HeuristicLab.Problems.TestFunctions;
    33 using HeuristicLab.SequentialEngine;
    3433using Microsoft.VisualStudio.TestTools.UnitTesting;
    3534
    36 namespace HeuristicLab_33.Tests {
     35namespace HeuristicLab.Tests {
    3736  [TestClass]
    3837  public class CollectObjectGraphTest {
     
    4544
    4645    [TestMethod]
     46    [TestCategory("General")]
     47    [TestCategory("Essential")]
     48    [TestProperty("Time", "medium")]
    4749    [DeploymentItem(@"HeuristicLab-3.3/Resources/GA_SymbReg.hl")]
    4850    public void CollectGASample() {
     
    9597    /// </summary>
    9698    [TestMethod]
     99    [TestCategory("General")]
     100    [TestProperty("Time", "long")]
    97101    public void AlgorithmExecutions() {
    98102      var algs = new List<IAlgorithm>();
     
    103107        ga.PopulationSize.Value = 5;
    104108        ga.MaximumGenerations.Value = 5;
    105         ga.Engine = new SequentialEngine();
     109        ga.Engine = new SequentialEngine.SequentialEngine();
    106110        ga.Problem = new SingleObjectiveTestFunctionProblem();
    107111
     
    121125    /// </summary>
    122126    [TestMethod]
     127    [TestCategory("General")]
     128    [TestProperty("Time", "medium")]
    123129    public void ParallelAlgorithmExecutions() {
    124130      int n = 60;
     
    133139          ga.PopulationSize.Value = 5;
    134140          ga.MaximumGenerations.Value = 5;
    135           ga.Engine = new SequentialEngine();
     141          ga.Engine = new SequentialEngine.SequentialEngine();
    136142          ga.Problem = new SingleObjectiveTestFunctionProblem();
    137143          ga.Prepare(true);
Note: See TracChangeset for help on using the changeset viewer.