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.Problems.TravelingSalesman-3.3/TSPMoveEvaluatorTest.cs

    r9456 r9885  
    2424using HeuristicLab.Data;
    2525using HeuristicLab.Encodings.PermutationEncoding;
    26 using HeuristicLab.Problems.TravelingSalesman;
    2726using HeuristicLab.Random;
    2827using Microsoft.VisualStudio.TestTools.UnitTesting;
    2928
    30 namespace HeuristicLab.Problems.TravelingSalesman_33.Tests {
    31 
     29namespace HeuristicLab.Problems.TravelingSalesman.Tests {
    3230  /// <summary>
    3331  ///This is a test class for TSP move evaluators
     
    4038    private static Permutation tour;
    4139    private static MersenneTwister random;
    42 
    43     private TestContext testContextInstance;
    44     /// <summary>
    45     ///Gets or sets the test context which provides
    46     ///information about and functionality for the current test run.
    47     ///</summary>
    48     public TestContext TestContext {
    49       get { return testContextInstance; }
    50       set { testContextInstance = value; }
    51     }
    5240
    5341    [ClassInitialize]
     
    7058
    7159    [TestMethod]
     60    [TestCategory("Problems.TravelingSalesman")]
     61    [TestProperty("Time", "short")]
    7262    public void InversionMoveEvaluatorTest() {
    7363      var evaluator = new TSPRoundedEuclideanPathEvaluator();
     
    10191
    10292    [TestMethod]
     93    [TestCategory("Problems.TravelingSalesman")]
     94    [TestProperty("Time", "short")]
    10395    public void TranslocationMoveEvaluatorTest() {
    10496      var evaluator = new TSPRoundedEuclideanPathEvaluator();
Note: See TracChangeset for help on using the changeset viewer.