Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/13 13:57:00 (11 years ago)
Author:
abeham
Message:

#2088: Added test attributes to further tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/TSPLIBInstanceProviderTest.cs

    r9772 r9782  
    2020#endregion
    2121
    22 
    2322using System;
    2423using System.Text;
    2524using HeuristicLab.Problems.Instances.TSPLIB;
    2625using Microsoft.VisualStudio.TestTools.UnitTesting;
     26
    2727namespace HeuristicLab.Problems.Instances.Tests {
    2828  [TestClass()]
     
    3030
    3131    [TestMethod]
     32    [TestCategory("Problems.Instances")]
     33    [TestProperty("Time", "medium")]
    3234    public void GetTSPLIBTSPInstanceTest() {
    3335      var target = new TSPLIBTSPInstanceProvider();
     
    3739        try {
    3840          target.LoadData(id);
    39         }
    40         catch (Exception ex) {
     41        } catch (Exception ex) {
    4142          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    4243        }
     
    4849
    4950    [TestMethod]
     51    [TestCategory("Problems.Instances")]
     52    [TestProperty("Time", "short")]
    5053    public void GetTSPLIBATSPInstanceTest() {
    5154      var target = new TSPLIBATSPInstanceProvider();
     
    5558        try {
    5659          target.LoadData(id);
    57         }
    58         catch (Exception ex) {
     60        } catch (Exception ex) {
    5961          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    6062        }
     
    6668
    6769    [TestMethod]
     70    [TestCategory("Problems.Instances")]
     71    [TestProperty("Time", "short")]
    6872    public void GetTSPLIBCVRPInstanceTest() {
    6973      var target = new TSPLIBCVRPInstanceProvider();
     
    7377        try {
    7478          target.LoadData(id);
    75         }
    76         catch (Exception ex) {
     79        } catch (Exception ex) {
    7780          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
    7881        }
Note: See TracChangeset for help on using the changeset viewer.