Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/29/12 14:02:51 (12 years ago)
Author:
mkommend
Message:

#1777: Extracted unit tests into a separate solution.

Location:
trunk/sources
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources

    • Property svn:ignore
      •  

        old new  
        2020bin
        2121protoc.exe
         22_ReSharper.HeuristicLab 3.3 Tests
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/CordeauGQAPInstanceProviderTest.cs

    r7560 r7915  
    2525using Microsoft.VisualStudio.TestTools.UnitTesting;
    2626
    27 namespace UnitTests {
     27namespace HeuristicLab.Problems.Instances_33.Tests {
    2828  [TestClass()]
    2929  public class CordeauGQAPInstanceProviderTest {
     
    3737        try {
    3838          target.LoadData(id);
    39         } catch (Exception ex) {
     39        }
     40        catch (Exception ex) {
    4041          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    4142        }
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/ElloumiCTAPInstanceProviderTest.cs

    r7560 r7915  
    2525using Microsoft.VisualStudio.TestTools.UnitTesting;
    2626
    27 namespace UnitTests {
     27namespace HeuristicLab.Problems.Instances_33.Tests {
    2828  [TestClass()]
    2929  public class ElloumiCTAPInstanceProviderTest {
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/QAPLIBInstanceProviderTest.cs

    r7560 r7915  
    2525using Microsoft.VisualStudio.TestTools.UnitTesting;
    2626
    27 namespace UnitTests {
     27namespace HeuristicLab.Problems.Instances_33.Tests {
    2828  [TestClass()]
    2929  public class QAPLIBInstanceProviderTest {
     
    3737        try {
    3838          target.LoadData(id);
    39         } catch (Exception ex) {
     39        }
     40        catch (Exception ex) {
    4041          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    4142        }
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/TSPLIBInstanceProviderTest.cs

    r7560 r7915  
    2020#endregion
    2121
     22
    2223using System;
    2324using System.Text;
    2425using HeuristicLab.Problems.Instances.TSPLIB;
    2526using Microsoft.VisualStudio.TestTools.UnitTesting;
    26 
    27 namespace UnitTests {
     27namespace HeuristicLab.Problems.Instances_33.Tests {
    2828  [TestClass()]
    2929  public class TSPLIBInstanceProviderTest {
     
    3737        try {
    3838          target.LoadData(id);
    39         } catch (Exception ex) {
     39        }
     40        catch (Exception ex) {
    4041          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    4142        }
     
    5455        try {
    5556          target.LoadData(id);
    56         } catch (Exception ex) {
     57        }
     58        catch (Exception ex) {
    5759          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    5860        }
     
    7173        try {
    7274          target.LoadData(id);
    73         } catch (Exception ex) {
     75        }
     76        catch (Exception ex) {
    7477          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    7578        }
Note: See TracChangeset for help on using the changeset viewer.