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.Encodings.SymbolicExpressionTreeEncoding-3.4/SubroutineDeleterTest.cs

    r9456 r9885  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2625using HeuristicLab.Random;
    2726using Microsoft.VisualStudio.TestTools.UnitTesting;
    2827
    29 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding_34.Tests {
     28namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Tests {
    3029  [TestClass]
    3130  public class SubroutineDeleterTest {
     
    3332    private const int MAX_TREE_LENGTH = 100;
    3433    private const int MAX_TREE_DEPTH = 10;
    35     private TestContext testContextInstance;
    3634
    37     /// <summary>
    38     ///Gets or sets the test context which provides
    39     ///information about and functionality for the current test run.
    40     ///</summary>
    41     public TestContext TestContext {
    42       get {
    43         return testContextInstance;
    44       }
    45       set {
    46         testContextInstance = value;
    47       }
    48     }
    49 
    50     [TestMethod()]
     35    [TestMethod]
     36    [TestCategory("Encodings.SymbolicExpressionTree")]
     37    [TestProperty("Time", "long")]
    5138    public void SubroutineDeleterDistributionsTest() {
    5239      var trees = new List<ISymbolicExpressionTree>();
Note: See TracChangeset for help on using the changeset viewer.