1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Text;
|
---|
24 | using HeuristicLab.Problems.Instances.DataAnalysis;
|
---|
25 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Problems.Instances.DataAnalysis_34.Tests {
|
---|
28 | [TestClass()]
|
---|
29 | public class RegressionInstanceProviderTest {
|
---|
30 |
|
---|
31 | [TestMethod()]
|
---|
32 | public void GetKeijzerInstanceTest() {
|
---|
33 | var target = new KeijzerInstanceProvider();
|
---|
34 | StringBuilder erroneousInstances = new StringBuilder();
|
---|
35 | int count = 0;
|
---|
36 | foreach (var id in target.GetDataDescriptors()) {
|
---|
37 | try {
|
---|
38 | target.LoadData(id);
|
---|
39 | }
|
---|
40 | catch (Exception ex) {
|
---|
41 | erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
|
---|
42 | }
|
---|
43 | count++;
|
---|
44 | }
|
---|
45 | Assert.IsTrue(count > 0, "No problem instances were found.");
|
---|
46 | Assert.IsTrue(erroneousInstances.Length == 0, "Some instances could not be parsed: " + Environment.NewLine + erroneousInstances.ToString());
|
---|
47 | }
|
---|
48 |
|
---|
49 | [TestMethod()]
|
---|
50 | public void GetKornInstanceTest() {
|
---|
51 | var target = new KornsInstanceProvider();
|
---|
52 | StringBuilder erroneousInstances = new StringBuilder();
|
---|
53 | int count = 0;
|
---|
54 | foreach (var id in target.GetDataDescriptors()) {
|
---|
55 | try {
|
---|
56 | target.LoadData(id);
|
---|
57 | }
|
---|
58 | catch (Exception ex) {
|
---|
59 | erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
|
---|
60 | }
|
---|
61 | count++;
|
---|
62 | }
|
---|
63 | Assert.IsTrue(count > 0, "No problem instances were found.");
|
---|
64 | Assert.IsTrue(erroneousInstances.Length == 0, "Some instances could not be parsed: " + Environment.NewLine + erroneousInstances.ToString());
|
---|
65 | }
|
---|
66 |
|
---|
67 | [TestMethod()]
|
---|
68 | public void GetNguyenInstanceTest() {
|
---|
69 | var target = new NguyenInstanceProvider();
|
---|
70 | StringBuilder erroneousInstances = new StringBuilder();
|
---|
71 | int count = 0;
|
---|
72 | foreach (var id in target.GetDataDescriptors()) {
|
---|
73 | try {
|
---|
74 | target.LoadData(id);
|
---|
75 | }
|
---|
76 | catch (Exception ex) {
|
---|
77 | erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
|
---|
78 | }
|
---|
79 | count++;
|
---|
80 | }
|
---|
81 | Assert.IsTrue(count > 0, "No problem instances were found.");
|
---|
82 | Assert.IsTrue(erroneousInstances.Length == 0, "Some instances could not be parsed: " + Environment.NewLine + erroneousInstances.ToString());
|
---|
83 | }
|
---|
84 |
|
---|
85 | [TestMethod()]
|
---|
86 | public void GetRealWorldInstanceTest() {
|
---|
87 | var target = new RegressionRealWorldInstanceProvider();
|
---|
88 | StringBuilder erroneousInstances = new StringBuilder();
|
---|
89 | int count = 0;
|
---|
90 | foreach (var id in target.GetDataDescriptors()) {
|
---|
91 | try {
|
---|
92 | target.LoadData(id);
|
---|
93 | }
|
---|
94 | catch (Exception ex) {
|
---|
95 | erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
|
---|
96 | }
|
---|
97 | count++;
|
---|
98 | }
|
---|
99 | Assert.IsTrue(count > 0, "No problem instances were found.");
|
---|
100 | Assert.IsTrue(erroneousInstances.Length == 0, "Some instances could not be parsed: " + Environment.NewLine + erroneousInstances.ToString());
|
---|
101 | }
|
---|
102 |
|
---|
103 | [TestMethod()]
|
---|
104 | public void GetVariousInstanceTest() {
|
---|
105 | var target = new VariousInstanceProvider();
|
---|
106 | StringBuilder erroneousInstances = new StringBuilder();
|
---|
107 | int count = 0;
|
---|
108 | foreach (var id in target.GetDataDescriptors()) {
|
---|
109 | try {
|
---|
110 | target.LoadData(id);
|
---|
111 | }
|
---|
112 | catch (Exception ex) {
|
---|
113 | erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
|
---|
114 | }
|
---|
115 | count++;
|
---|
116 | }
|
---|
117 | Assert.IsTrue(count > 0, "No problem instances were found.");
|
---|
118 | Assert.IsTrue(erroneousInstances.Length == 0, "Some instances could not be parsed: " + Environment.NewLine + erroneousInstances.ToString());
|
---|
119 | }
|
---|
120 |
|
---|
121 | [TestMethod()]
|
---|
122 | public void GetVladislavlevaInstanceTest() {
|
---|
123 | var target = new VladislavlevaInstanceProvider();
|
---|
124 | StringBuilder erroneousInstances = new StringBuilder();
|
---|
125 | int count = 0;
|
---|
126 | foreach (var id in target.GetDataDescriptors()) {
|
---|
127 | try {
|
---|
128 | target.LoadData(id);
|
---|
129 | }
|
---|
130 | catch (Exception ex) {
|
---|
131 | erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
|
---|
132 | }
|
---|
133 | count++;
|
---|
134 | }
|
---|
135 | Assert.IsTrue(count > 0, "No problem instances were found.");
|
---|
136 | Assert.IsTrue(erroneousInstances.Length == 0, "Some instances could not be parsed: " + Environment.NewLine + erroneousInstances.ToString());
|
---|
137 | }
|
---|
138 | }
|
---|
139 | }
|
---|