Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Tests/CyclicCrossover2Test.cs

    r3742 r4068  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Encodings.PermutationEncoding;
    2324using Microsoft.VisualStudio.TestTools.UnitTesting;
    24 using HeuristicLab.Encodings.PermutationEncoding;
    2525
    2626namespace HeuristicLab.Encodings.PermutationEncoding_33.Tests {
    27     /// <summary>
    28     ///This is a test class for CyclicCrossover2Test and is intended
    29     ///to contain all CyclicCrossover2Test Unit Tests
    30     ///</summary>
     27  /// <summary>
     28  ///This is a test class for CyclicCrossover2Test and is intended
     29  ///to contain all CyclicCrossover2Test Unit Tests
     30  ///</summary>
    3131  [TestClass()]
    3232  public class CyclicCrossover2Test {
     
    9393        target.Cross(random, new ItemArray<Permutation>(new Permutation[] {
    9494          new Permutation(PermutationTypes.RelativeUndirected, 4), new Permutation(PermutationTypes.RelativeUndirected, 4), new Permutation(PermutationTypes.RelativeUndirected, 4)}));
    95       } catch (System.InvalidOperationException) {
     95      }
     96      catch (System.InvalidOperationException) {
    9697        exceptionFired = true;
    9798      }
     
    124125      try {
    125126        CyclicCrossover.Apply(random, new Permutation(PermutationTypes.RelativeUndirected, 8), new Permutation(PermutationTypes.RelativeUndirected, 6));
    126       } catch (System.ArgumentException) {
     127      }
     128      catch (System.ArgumentException) {
    127129        exceptionFired = true;
    128130      }
Note: See TracChangeset for help on using the changeset viewer.