Changeset 11205 for branches/HiveStatistics/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances.DataAnalysis-3.3/RegressionInstanceProviderTest.cs
- Timestamp:
- 07/18/14 13:44:53 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:ignore
-
old new 8 8 FxCopResults.txt 9 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll 10 11 HeuristicLab 3.3.5.1.ReSharper.user 11 12 HeuristicLab 3.3.6.0.ReSharper.user 12 13 HeuristicLab.4.5.resharper.user 13 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 14 16 HeuristicLab.resharper.user 15 17 ProtoGen.exe … … 17 19 _ReSharper.HeuristicLab 18 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 19 22 _ReSharper.HeuristicLab.ExtLibs 20 23 bin 21 24 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HiveStatistics/sources/HeuristicLab.Tests
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Tests/HeuristicLab.Problems.Instances.DataAnalysis-3.3/RegressionInstanceProviderTest.cs
r11203 r11205 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.Text; 24 using HeuristicLab.Problems.Instances.DataAnalysis;25 24 using Microsoft.VisualStudio.TestTools.UnitTesting; 26 25 27 namespace HeuristicLab.Problems.Instances.DataAnalysis _34.Tests {26 namespace HeuristicLab.Problems.Instances.DataAnalysis.Tests { 28 27 [TestClass()] 29 28 public class RegressionInstanceProviderTest { 30 29 31 [TestMethod()] 30 [TestMethod] 31 [TestCategory("Problems.Instances")] 32 [TestProperty("Time", "medium")] 32 33 public void GetKeijzerInstanceTest() { 33 34 var target = new KeijzerInstanceProvider(); … … 37 38 try { 38 39 target.LoadData(id); 39 } 40 catch (Exception ex) { 40 } catch (Exception ex) { 41 41 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 42 42 } … … 47 47 } 48 48 49 [TestMethod()] 49 [TestMethod] 50 [TestCategory("Problems.Instances")] 51 [TestProperty("Time", "short")] 50 52 public void GetKornInstanceTest() { 51 53 var target = new KornsInstanceProvider(); … … 55 57 try { 56 58 target.LoadData(id); 57 } 58 catch (Exception ex) { 59 } catch (Exception ex) { 59 60 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 60 61 } … … 65 66 } 66 67 67 [TestMethod()] 68 [TestMethod] 69 [TestCategory("Problems.Instances")] 70 [TestProperty("Time", "short")] 68 71 public void GetNguyenInstanceTest() { 69 72 var target = new NguyenInstanceProvider(); … … 73 76 try { 74 77 target.LoadData(id); 75 } 76 catch (Exception ex) { 78 } catch (Exception ex) { 77 79 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 78 80 } … … 83 85 } 84 86 85 [TestMethod()] 87 [TestMethod] 88 [TestCategory("Problems.Instances")] 89 [TestProperty("Time", "short")] 86 90 public void GetRealWorldInstanceTest() { 87 91 var target = new RegressionRealWorldInstanceProvider(); … … 91 95 try { 92 96 target.LoadData(id); 93 } 94 catch (Exception ex) { 97 } catch (Exception ex) { 95 98 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 96 99 } … … 101 104 } 102 105 103 [TestMethod()] 106 [TestMethod] 107 [TestCategory("Problems.Instances")] 108 [TestProperty("Time", "short")] 104 109 public void GetVariousInstanceTest() { 105 110 var target = new VariousInstanceProvider(); … … 109 114 try { 110 115 target.LoadData(id); 111 } 112 catch (Exception ex) { 116 } catch (Exception ex) { 113 117 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 114 118 } … … 119 123 } 120 124 121 [TestMethod()] 125 [TestMethod] 126 [TestCategory("Problems.Instances")] 127 [TestProperty("Time", "short")] 122 128 public void GetVladislavlevaInstanceTest() { 123 129 var target = new VladislavlevaInstanceProvider(); … … 127 133 try { 128 134 target.LoadData(id); 129 } 130 catch (Exception ex) { 135 } catch (Exception ex) { 131 136 erroneousInstances.AppendLine(id.Name + ": " + ex.Message); 132 137 }
Note: See TracChangeset
for help on using the changeset viewer.