Changeset 8086 for branches/ScatterSearch (trunk integration)/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3
- Timestamp:
- 06/22/12 11:11:38 (12 years ago)
- Location:
- branches/ScatterSearch (trunk integration)
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)
- 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/ScatterSearch (trunk integration)/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/ScatterSearch (trunk integration)/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/CordeauGQAPInstanceProviderTest.cs
r7560 r8086 25 25 using Microsoft.VisualStudio.TestTools.UnitTesting; 26 26 27 namespace UnitTests {27 namespace HeuristicLab.Problems.Instances_33.Tests { 28 28 [TestClass()] 29 29 public class CordeauGQAPInstanceProviderTest { … … 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 } -
branches/ScatterSearch (trunk integration)/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/ElloumiCTAPInstanceProviderTest.cs
r7560 r8086 25 25 using Microsoft.VisualStudio.TestTools.UnitTesting; 26 26 27 namespace UnitTests {27 namespace HeuristicLab.Problems.Instances_33.Tests { 28 28 [TestClass()] 29 29 public class ElloumiCTAPInstanceProviderTest { -
branches/ScatterSearch (trunk integration)/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/QAPLIBInstanceProviderTest.cs
r7560 r8086 25 25 using Microsoft.VisualStudio.TestTools.UnitTesting; 26 26 27 namespace UnitTests {27 namespace HeuristicLab.Problems.Instances_33.Tests { 28 28 [TestClass()] 29 29 public class QAPLIBInstanceProviderTest { … … 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 } -
branches/ScatterSearch (trunk integration)/HeuristicLab.Tests/HeuristicLab.Problems.Instances-3.3/TSPLIBInstanceProviderTest.cs
r7560 r8086 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.