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/OrderCrossover2Test.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 OrderCrossover2Test and is intended
    29     ///to contain all OrderCrossover2Test Unit Tests
    30     ///</summary>
     27  /// <summary>
     28  ///This is a test class for OrderCrossover2Test and is intended
     29  ///to contain all OrderCrossover2Test Unit Tests
     30  ///</summary>
    3131  [TestClass()]
    3232  public class OrderCrossover2Test {
     
    9292        target.Cross(random, new ItemArray<Permutation>(new Permutation[] {
    9393          new Permutation(PermutationTypes.RelativeUndirected, 4), new Permutation(PermutationTypes.RelativeUndirected, 4), new Permutation(PermutationTypes.RelativeUndirected, 4)}));
    94       } catch (System.InvalidOperationException) {
     94      }
     95      catch (System.InvalidOperationException) {
    9596        exceptionFired = true;
    9697      }
     
    123124      try {
    124125        OrderCrossover.Apply(random, new Permutation(PermutationTypes.RelativeUndirected, 8), new Permutation(PermutationTypes.RelativeUndirected, 6));
    125       } catch (System.ArgumentException) {
     126      }
     127      catch (System.ArgumentException) {
    126128        exceptionFired = true;
    127129      }
Note: See TracChangeset for help on using the changeset viewer.