Changeset 8085 for branches/GP-MoveOperators/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/TSPLIBInstanceProviderTest.cs
- Timestamp:
- 06/21/12 18:02:33 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 20 20 bin 21 21 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Tests
- Property svn:ignore
-
old new 3 3 HeuristicLab.Tests.csproj.user 4 4 *.vs10x 5 _ReSharper.HeuristicLab 3.3 Tests
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/TSPLIBInstanceProviderTest.cs
r7560 r8085 20 20 #endregion 21 21 22 22 23 using System; 23 24 using System.Text; 24 25 using HeuristicLab.Problems.Instances.TSPLIB; 25 26 using Microsoft.VisualStudio.TestTools.UnitTesting; 26 27 namespace UnitTests { 27 namespace HeuristicLab.Problems.Instances_33.Tests { 28 28 [TestClass()] 29 29 public class TSPLIBInstanceProviderTest { … … 37 37 try { 38 38 target.LoadData(id); 39 } catch (Exception ex) { 39 } 40 catch (Exception ex) { 40 41 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 41 42 } … … 54 55 try { 55 56 target.LoadData(id); 56 } catch (Exception ex) { 57 } 58 catch (Exception ex) { 57 59 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 58 60 } … … 71 73 try { 72 74 target.LoadData(id); 73 } catch (Exception ex) { 75 } 76 catch (Exception ex) { 74 77 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 75 78 }
Note: See TracChangeset
for help on using the changeset viewer.