| | 1 | | using ValidateLib.ErrorsAndWarnings.Warnings; |
| | 2 | | using ValidateLib.Metadata.ParsingAndValidation; |
| | 3 | |
|
| | 4 | | namespace ParsingTests |
| | 5 | | { |
| | 6 | | public class PositiveTests |
| | 7 | | { |
| | 8 | | public readonly string testFilesDirectory; |
| 1 | 9 | | public PositiveTests() |
| 1 | 10 | | { |
| 1 | 11 | | testFilesDirectory = Path.Combine(GetProjectDirectory(), "TestFiles"); |
| 1 | 12 | | } |
| | 13 | | static string GetProjectDirectory() |
| 1 | 14 | | { |
| 1 | 15 | | string? currentDirectory = Directory.GetCurrentDirectory(); |
| | 16 | |
|
| 1 | 17 | | while (!string.IsNullOrEmpty(currentDirectory)) |
| 1 | 18 | | { |
| 1 | 19 | | string[] projectFiles = Directory.GetFiles(currentDirectory, "*.csproj"); |
| | 20 | |
|
| 1 | 21 | | if (projectFiles.Length > 0) |
| 1 | 22 | | return currentDirectory; |
| 1 | 23 | | currentDirectory = Directory.GetParent(currentDirectory)?.FullName; |
| 1 | 24 | | } |
| | 25 | |
|
| 0 | 26 | | throw new Exception("Could not find project directory."); |
| 1 | 27 | | } |
| | 28 | | [Fact] |
| | 29 | | public void PositiveTestsCSVW011() |
| 1 | 30 | | { |
| 1 | 31 | | var testNumber = "011"; |
| 1 | 32 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "tree-ops.csv-metadata.json"); |
| 1 | 33 | | var warnings = new List<Warning>(); |
| | 34 | |
|
| 1 | 35 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 36 | | warnings, |
| 1 | 37 | | testFilePath |
| 1 | 38 | | ); |
| | 39 | |
|
| 1 | 40 | | Assert.Empty(warnings); |
| | 41 | |
|
| | 42 | |
|
| 1 | 43 | | } |
| | 44 | |
|
| | 45 | | [Fact] |
| | 46 | | public void PositiveTestsCSVW012() |
| 1 | 47 | | { |
| 1 | 48 | | var testNumber = "012"; |
| 1 | 49 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber,"csv-metadata.json"); |
| 1 | 50 | | var warnings = new List<Warning>(); |
| | 51 | |
|
| 1 | 52 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 53 | | warnings, |
| 1 | 54 | | testFilePath |
| 1 | 55 | | ); |
| | 56 | |
|
| 1 | 57 | | Assert.Empty(warnings); |
| 1 | 58 | | } |
| | 59 | | [Fact] |
| | 60 | | public void PositiveTestsCSVW013() |
| 1 | 61 | | { |
| 1 | 62 | | var testNumber = "013"; |
| 1 | 63 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber,"user-metadata.json"); |
| 1 | 64 | | var warnings = new List<Warning>(); |
| | 65 | |
|
| 1 | 66 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 67 | | warnings, |
| 1 | 68 | | testFilePath |
| 1 | 69 | | ); |
| | 70 | |
|
| 1 | 71 | | Assert.Empty(warnings); |
| 1 | 72 | | } |
| | 73 | | [Fact] |
| | 74 | | public void PositiveTestsCSVW014() |
| 1 | 75 | | { |
| 1 | 76 | | var testNumber = "014"; |
| 1 | 77 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "linked-metadata.json"); |
| 1 | 78 | | var warnings = new List<Warning>(); |
| | 79 | |
|
| 1 | 80 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 81 | | warnings, |
| 1 | 82 | | testFilePath |
| 1 | 83 | | ); |
| | 84 | |
|
| 1 | 85 | | Assert.Empty(warnings); |
| 1 | 86 | | } |
| | 87 | | [Fact] |
| | 88 | | public void PositiveTestsCSVW023() |
| 1 | 89 | | { |
| 1 | 90 | | var testNumber = "023"; |
| 1 | 91 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "user-metadata.json"); |
| 1 | 92 | | var warnings = new List<Warning>(); |
| | 93 | |
|
| 1 | 94 | | var tableGroupDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 95 | | warnings, |
| 1 | 96 | | testFilePath |
| 1 | 97 | | ); |
| | 98 | |
|
| 1 | 99 | | Assert.Empty(warnings); |
| 1 | 100 | | } |
| | 101 | | [Fact] |
| | 102 | | public void PositiveTestsCSVW027() |
| 1 | 103 | | { |
| 1 | 104 | | var testNumber = "027"; |
| 1 | 105 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "user-metadata.json"); |
| 1 | 106 | | var warnings = new List<Warning>(); |
| | 107 | |
|
| 1 | 108 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 109 | | warnings, |
| 1 | 110 | | testFilePath |
| 1 | 111 | | ); |
| | 112 | |
|
| 1 | 113 | | Assert.Empty(warnings); |
| 1 | 114 | | } |
| | 115 | | [Fact] |
| | 116 | | public void PositiveTestsCSVW030() |
| 1 | 117 | | { |
| 1 | 118 | | var testNumber = "030"; |
| 1 | 119 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber,"countries.json"); |
| 1 | 120 | | var warnings = new List<Warning>(); |
| | 121 | |
|
| 1 | 122 | | var tableGroupDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 123 | | warnings, |
| 1 | 124 | | testFilePath |
| 1 | 125 | | ); |
| | 126 | |
|
| 1 | 127 | | Assert.Empty(warnings); |
| 1 | 128 | | } |
| | 129 | | [Fact] |
| | 130 | | public void PositiveTestsCSVW032() |
| 1 | 131 | | { |
| 1 | 132 | | var testNumber = "032"; |
| 1 | 133 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "csv-metadata.json"); |
| 1 | 134 | | var warnings = new List<Warning>(); |
| | 135 | |
|
| 1 | 136 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 137 | | warnings, |
| 1 | 138 | | testFilePath |
| 1 | 139 | | ); |
| | 140 | |
|
| 1 | 141 | | Assert.Empty(warnings); |
| 1 | 142 | | } |
| | 143 | | [Fact] |
| | 144 | | public void PositiveTestsCSVW036() |
| 1 | 145 | | { |
| 1 | 146 | | var testNumber = "036"; |
| 1 | 147 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "tree-ops-ext.csv-metadata.json"); |
| 1 | 148 | | var warnings = new List<Warning>(); |
| | 149 | |
|
| 1 | 150 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 151 | | warnings, |
| 1 | 152 | | testFilePath |
| 1 | 153 | | ); |
| | 154 | |
|
| 1 | 155 | | Assert.Empty(warnings); |
| 1 | 156 | | } |
| | 157 | |
|
| | 158 | | [Fact] |
| | 159 | | public void PositiveTestsCSVW038() |
| 1 | 160 | | { |
| 1 | 161 | | var testNumber = "038"; |
| 1 | 162 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 163 | | var warnings = new List<Warning>(); |
| | 164 | |
|
| 1 | 165 | | var tableGroupDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 166 | | warnings, |
| 1 | 167 | | testFilePath |
| 1 | 168 | | ); |
| | 169 | |
|
| 1 | 170 | | Assert.Empty(warnings); |
| 1 | 171 | | } |
| | 172 | |
|
| | 173 | | [Fact] |
| | 174 | | public void PositiveTestsCSVW039() |
| 1 | 175 | | { |
| 1 | 176 | | var testNumber = "039"; |
| 1 | 177 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 178 | | var warnings = new List<Warning>(); |
| | 179 | |
|
| 1 | 180 | | var tableGroupDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 181 | | warnings, |
| 1 | 182 | | testFilePath |
| 1 | 183 | | ); |
| | 184 | |
|
| 1 | 185 | | Assert.Empty(warnings); |
| 1 | 186 | | } |
| | 187 | |
|
| | 188 | |
|
| | 189 | | [Fact] |
| | 190 | | public void PositiveTestInvalidLanguageInTitlesCSVW109() |
| 1 | 191 | | { |
| 1 | 192 | | var testNumber = "109"; |
| 1 | 193 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 194 | | var warnings = new List<Warning>(); |
| 1 | 195 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 196 | | warnings, |
| 1 | 197 | | testFilePath |
| 1 | 198 | | ); |
| | 199 | |
|
| 1 | 200 | | Assert.Empty(tableDescriptor.tableSchema!._value!.columns!._value![0]!.titles!._value!); |
| 1 | 201 | | Assert.Empty(warnings); |
| | 202 | |
|
| 1 | 203 | | } |
| | 204 | |
|
| | 205 | | [Fact] |
| | 206 | | public void PositiveTestCSVW116() |
| 1 | 207 | | { |
| 1 | 208 | | var testNumber = "116"; |
| 1 | 209 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + ".csv-metadat |
| 1 | 210 | | var warnings = new List<Warning>(); |
| 1 | 211 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 212 | | warnings, |
| 1 | 213 | | testFilePath |
| 1 | 214 | | ); |
| | 215 | |
|
| 1 | 216 | | Assert.Empty(warnings); |
| | 217 | |
|
| 1 | 218 | | } |
| | 219 | |
|
| | 220 | | [Fact] |
| | 221 | | public void PositiveTestCSVW152() |
| 1 | 222 | | { |
| 1 | 223 | | var testNumber = "152"; |
| 1 | 224 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 225 | | var warnings = new List<Warning>(); |
| 1 | 226 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 227 | | warnings, |
| 1 | 228 | | testFilePath |
| 1 | 229 | | ); |
| | 230 | |
|
| 1 | 231 | | Assert.Empty(warnings); |
| | 232 | |
|
| 1 | 233 | | } |
| | 234 | |
|
| | 235 | | [Fact] |
| | 236 | | public void PositiveTestCSVW154() |
| 1 | 237 | | { |
| 1 | 238 | | var testNumber = "154"; |
| 1 | 239 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 240 | | var warnings = new List<Warning>(); |
| 1 | 241 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 242 | | warnings, |
| 1 | 243 | | testFilePath |
| 1 | 244 | | ); |
| | 245 | |
|
| 1 | 246 | | Assert.Empty(warnings); |
| | 247 | |
|
| 1 | 248 | | } |
| | 249 | |
|
| | 250 | | [Fact] |
| | 251 | | public void PositiveTestCSVW155() |
| 1 | 252 | | { |
| 1 | 253 | | var testNumber = "155"; |
| 1 | 254 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 255 | | var warnings = new List<Warning>(); |
| 1 | 256 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 257 | | warnings, |
| 1 | 258 | | testFilePath |
| 1 | 259 | | ); |
| | 260 | |
|
| 1 | 261 | | Assert.Empty(warnings); |
| | 262 | |
|
| 1 | 263 | | } |
| | 264 | |
|
| | 265 | | [Fact] |
| | 266 | | public void PositiveTestCSVW157() |
| 1 | 267 | | { |
| 1 | 268 | | var testNumber = "157"; |
| 1 | 269 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 270 | | var warnings = new List<Warning>(); |
| 1 | 271 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 272 | | warnings, |
| 1 | 273 | | testFilePath |
| 1 | 274 | | ); |
| | 275 | |
|
| 1 | 276 | | Assert.Empty(warnings); |
| | 277 | |
|
| 1 | 278 | | } |
| | 279 | | [Fact] |
| | 280 | | public void PositiveTestCSVW158() |
| 1 | 281 | | { |
| 1 | 282 | | var testNumber = "158"; |
| 1 | 283 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 284 | | var warnings = new List<Warning>(); |
| 1 | 285 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 286 | | warnings, |
| 1 | 287 | | testFilePath |
| 1 | 288 | | ); |
| | 289 | |
|
| 1 | 290 | | Assert.Empty(warnings); |
| | 291 | |
|
| 1 | 292 | | } |
| | 293 | | [Fact] |
| | 294 | | public void PositiveTestCSVW160() |
| 1 | 295 | | { |
| 1 | 296 | | var testNumber = "160"; |
| 1 | 297 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 298 | | var warnings = new List<Warning>(); |
| 1 | 299 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 300 | | warnings, |
| 1 | 301 | | testFilePath |
| 1 | 302 | | ); |
| | 303 | |
|
| 1 | 304 | | Assert.Empty(warnings); |
| | 305 | |
|
| 1 | 306 | | } |
| | 307 | | [Fact] |
| | 308 | | public void PositiveTestCSVW161() |
| 1 | 309 | | { |
| 1 | 310 | | var testNumber = "161"; |
| 1 | 311 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 312 | | var warnings = new List<Warning>(); |
| 1 | 313 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 314 | | warnings, |
| 1 | 315 | | testFilePath |
| 1 | 316 | | ); |
| | 317 | |
|
| 1 | 318 | | Assert.Empty(warnings); |
| | 319 | |
|
| 1 | 320 | | } |
| | 321 | | [Fact] |
| | 322 | | public void PositiveTestCSVW162() |
| 1 | 323 | | { |
| 1 | 324 | | var testNumber = "162"; |
| 1 | 325 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 326 | | var warnings = new List<Warning>(); |
| 1 | 327 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 328 | | warnings, |
| 1 | 329 | | testFilePath |
| 1 | 330 | | ); |
| | 331 | |
|
| 1 | 332 | | Assert.Empty(warnings); |
| | 333 | |
|
| 1 | 334 | | } |
| | 335 | | [Fact] |
| | 336 | | public void PositiveTestCSVW163() |
| 1 | 337 | | { |
| 1 | 338 | | var testNumber = "163"; |
| 1 | 339 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 340 | | var warnings = new List<Warning>(); |
| 1 | 341 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 342 | | warnings, |
| 1 | 343 | | testFilePath |
| 1 | 344 | | ); |
| | 345 | |
|
| 1 | 346 | | Assert.Empty(warnings); |
| | 347 | |
|
| 1 | 348 | | } |
| | 349 | | [Fact] |
| | 350 | | public void PositiveTestCSVW164() |
| 1 | 351 | | { |
| 1 | 352 | | var testNumber = "164"; |
| 1 | 353 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 354 | | var warnings = new List<Warning>(); |
| 1 | 355 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 356 | | warnings, |
| 1 | 357 | | testFilePath |
| 1 | 358 | | ); |
| | 359 | |
|
| 1 | 360 | | Assert.Empty(warnings); |
| | 361 | |
|
| 1 | 362 | | } |
| | 363 | | [Fact] |
| | 364 | | public void PositiveTestCSVW165() |
| 1 | 365 | | { |
| 1 | 366 | | var testNumber = "165"; |
| 1 | 367 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 368 | | var warnings = new List<Warning>(); |
| 1 | 369 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 370 | | warnings, |
| 1 | 371 | | testFilePath |
| 1 | 372 | | ); |
| | 373 | |
|
| 1 | 374 | | Assert.Empty(warnings); |
| | 375 | |
|
| 1 | 376 | | } |
| | 377 | | [Fact] |
| | 378 | | public void PositiveTestCSVW166() |
| 1 | 379 | | { |
| 1 | 380 | | var testNumber = "166"; |
| 1 | 381 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 382 | | var warnings = new List<Warning>(); |
| 1 | 383 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 384 | | warnings, |
| 1 | 385 | | testFilePath |
| 1 | 386 | | ); |
| | 387 | |
|
| 1 | 388 | | Assert.Empty(warnings); |
| | 389 | |
|
| 1 | 390 | | } |
| | 391 | | [Fact] |
| | 392 | | public void PositiveTestCSVW167() |
| 1 | 393 | | { |
| 1 | 394 | | var testNumber = "167"; |
| 1 | 395 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 396 | | var warnings = new List<Warning>(); |
| 1 | 397 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 398 | | warnings, |
| 1 | 399 | | testFilePath |
| 1 | 400 | | ); |
| | 401 | |
|
| 1 | 402 | | Assert.Empty(warnings); |
| | 403 | |
|
| 1 | 404 | | } |
| | 405 | | [Fact] |
| | 406 | | public void PositiveTestCSVW168() |
| 1 | 407 | | { |
| 1 | 408 | | var testNumber = "168"; |
| 1 | 409 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 410 | | var warnings = new List<Warning>(); |
| 1 | 411 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 412 | | warnings, |
| 1 | 413 | | testFilePath |
| 1 | 414 | | ); |
| | 415 | |
|
| 1 | 416 | | Assert.Empty(warnings); |
| | 417 | |
|
| 1 | 418 | | } |
| | 419 | | [Fact] |
| | 420 | | public void PositiveTestCSVW169() |
| 1 | 421 | | { |
| 1 | 422 | | var testNumber = "169"; |
| 1 | 423 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 424 | | var warnings = new List<Warning>(); |
| 1 | 425 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 426 | | warnings, |
| 1 | 427 | | testFilePath |
| 1 | 428 | | ); |
| | 429 | |
|
| 1 | 430 | | Assert.Empty(warnings); |
| | 431 | |
|
| 1 | 432 | | } |
| | 433 | | [Fact] |
| | 434 | | public void PositiveTestCSVW170() |
| 1 | 435 | | { |
| 1 | 436 | | var testNumber = "170"; |
| 1 | 437 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 438 | | var warnings = new List<Warning>(); |
| 1 | 439 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 440 | | warnings, |
| 1 | 441 | | testFilePath |
| 1 | 442 | | ); |
| | 443 | |
|
| 1 | 444 | | Assert.Empty(warnings); |
| | 445 | |
|
| 1 | 446 | | } |
| | 447 | | [Fact] |
| | 448 | | public void PositiveTestCSVW171() |
| 1 | 449 | | { |
| 1 | 450 | | var testNumber = "171"; |
| 1 | 451 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 452 | | var warnings = new List<Warning>(); |
| 1 | 453 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 454 | | warnings, |
| 1 | 455 | | testFilePath |
| 1 | 456 | | ); |
| | 457 | |
|
| 1 | 458 | | Assert.Empty(warnings); |
| | 459 | |
|
| 1 | 460 | | } |
| | 461 | | [Fact] |
| | 462 | | public void PositiveTestCSVW172() |
| 1 | 463 | | { |
| 1 | 464 | | var testNumber = "172"; |
| 1 | 465 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 466 | | var warnings = new List<Warning>(); |
| 1 | 467 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 468 | | warnings, |
| 1 | 469 | | testFilePath |
| 1 | 470 | | ); |
| | 471 | |
|
| 1 | 472 | | Assert.Empty(warnings); |
| | 473 | |
|
| 1 | 474 | | } |
| | 475 | | [Fact] |
| | 476 | | public void PositiveTestCSVW173() |
| 1 | 477 | | { |
| 1 | 478 | | var testNumber = "173"; |
| 1 | 479 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 480 | | var warnings = new List<Warning>(); |
| 1 | 481 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 482 | | warnings, |
| 1 | 483 | | testFilePath |
| 1 | 484 | | ); |
| | 485 | |
|
| 1 | 486 | | Assert.Empty(warnings); |
| | 487 | |
|
| 1 | 488 | | } |
| | 489 | | [Fact] |
| | 490 | | public void PositiveTestCSVW174() |
| 1 | 491 | | { |
| 1 | 492 | | var testNumber = "174"; |
| 1 | 493 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 494 | | var warnings = new List<Warning>(); |
| 1 | 495 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 496 | | warnings, |
| 1 | 497 | | testFilePath |
| 1 | 498 | | ); |
| | 499 | |
|
| 1 | 500 | | Assert.Empty(warnings); |
| | 501 | |
|
| 1 | 502 | | } |
| | 503 | | [Fact] |
| | 504 | | public void PositiveTestCSVW175() |
| 1 | 505 | | { |
| 1 | 506 | | var testNumber = "175"; |
| 1 | 507 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 508 | | var warnings = new List<Warning>(); |
| 1 | 509 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 510 | | warnings, |
| 1 | 511 | | testFilePath |
| 1 | 512 | | ); |
| | 513 | |
|
| 1 | 514 | | Assert.Empty(warnings); |
| | 515 | |
|
| 1 | 516 | | } |
| | 517 | | [Fact] |
| | 518 | | public void PositiveTestCSVW176() |
| 1 | 519 | | { |
| 1 | 520 | | var testNumber = "176"; |
| 1 | 521 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 522 | | var warnings = new List<Warning>(); |
| 1 | 523 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 524 | | warnings, |
| 1 | 525 | | testFilePath |
| 1 | 526 | | ); |
| | 527 | |
|
| 1 | 528 | | Assert.Empty(warnings); |
| | 529 | |
|
| 1 | 530 | | } |
| | 531 | | [Fact] |
| | 532 | | public void PositiveTestCSVW177() |
| 1 | 533 | | { |
| 1 | 534 | | var testNumber = "177"; |
| 1 | 535 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 536 | | var warnings = new List<Warning>(); |
| 1 | 537 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 538 | | warnings, |
| 1 | 539 | | testFilePath |
| 1 | 540 | | ); |
| | 541 | |
|
| 1 | 542 | | Assert.Empty(warnings); |
| | 543 | |
|
| 1 | 544 | | } |
| | 545 | | [Fact] |
| | 546 | | public void PositiveTestCSVW178() |
| 1 | 547 | | { |
| 1 | 548 | | var testNumber = "178"; |
| 1 | 549 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 550 | | var warnings = new List<Warning>(); |
| 1 | 551 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 552 | | warnings, |
| 1 | 553 | | testFilePath |
| 1 | 554 | | ); |
| | 555 | |
|
| 1 | 556 | | Assert.Empty(warnings); |
| | 557 | |
|
| 1 | 558 | | } |
| | 559 | | [Fact] |
| | 560 | | public void PositiveTestCSVW179() |
| 1 | 561 | | { |
| 1 | 562 | | var testNumber = "179"; |
| 1 | 563 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 564 | | var warnings = new List<Warning>(); |
| 1 | 565 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 566 | | warnings, |
| 1 | 567 | | testFilePath |
| 1 | 568 | | ); |
| | 569 | |
|
| 1 | 570 | | Assert.Empty(warnings); |
| | 571 | |
|
| 1 | 572 | | } |
| | 573 | | [Fact] |
| | 574 | | public void PositiveTestCSVW180() |
| 1 | 575 | | { |
| 1 | 576 | | var testNumber = "180"; |
| 1 | 577 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 578 | | var warnings = new List<Warning>(); |
| 1 | 579 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 580 | | warnings, |
| 1 | 581 | | testFilePath |
| 1 | 582 | | ); |
| | 583 | |
|
| 1 | 584 | | Assert.Empty(warnings); |
| | 585 | |
|
| 1 | 586 | | } |
| | 587 | | [Fact] |
| | 588 | | public void PositiveTestCSVW181() |
| 1 | 589 | | { |
| 1 | 590 | | var testNumber = "181"; |
| 1 | 591 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 592 | | var warnings = new List<Warning>(); |
| 1 | 593 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 594 | | warnings, |
| 1 | 595 | | testFilePath |
| 1 | 596 | | ); |
| | 597 | |
|
| 1 | 598 | | Assert.Empty(warnings); |
| | 599 | |
|
| 1 | 600 | | } |
| | 601 | | [Fact] |
| | 602 | | public void PositiveTestCSVW182() |
| 1 | 603 | | { |
| 1 | 604 | | var testNumber = "182"; |
| 1 | 605 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 606 | | var warnings = new List<Warning>(); |
| 1 | 607 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 608 | | warnings, |
| 1 | 609 | | testFilePath |
| 1 | 610 | | ); |
| | 611 | |
|
| 1 | 612 | | Assert.Empty(warnings); |
| | 613 | |
|
| 1 | 614 | | } |
| | 615 | |
|
| | 616 | | [Fact] |
| | 617 | | public void PositiveTestCSVW183() |
| 1 | 618 | | { |
| 1 | 619 | | var testNumber = "183"; |
| 1 | 620 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 621 | | var warnings = new List<Warning>(); |
| 1 | 622 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 623 | | warnings, |
| 1 | 624 | | testFilePath |
| 1 | 625 | | ); |
| | 626 | |
|
| 1 | 627 | | Assert.Empty(warnings); |
| | 628 | |
|
| 1 | 629 | | } |
| | 630 | |
|
| | 631 | | [Fact] |
| | 632 | | public void PositiveTestCSVW185() |
| 1 | 633 | | { |
| 1 | 634 | | var testNumber = "185"; |
| 1 | 635 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 636 | | var warnings = new List<Warning>(); |
| 1 | 637 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 638 | | warnings, |
| 1 | 639 | | testFilePath |
| 1 | 640 | | ); |
| | 641 | |
|
| 1 | 642 | | Assert.Empty(warnings); |
| | 643 | |
|
| 1 | 644 | | } |
| | 645 | | [Fact] |
| | 646 | | public void PositiveTestCSVW186() |
| 1 | 647 | | { |
| 1 | 648 | | var testNumber = "186"; |
| 1 | 649 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 650 | | var warnings = new List<Warning>(); |
| 1 | 651 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 652 | | warnings, |
| 1 | 653 | | testFilePath |
| 1 | 654 | | ); |
| | 655 | |
|
| 1 | 656 | | Assert.Empty(warnings); |
| | 657 | |
|
| 1 | 658 | | } |
| | 659 | | [Fact] |
| | 660 | | public void PositiveTestCSVW187() |
| 1 | 661 | | { |
| 1 | 662 | | var testNumber = "187"; |
| 1 | 663 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 664 | | var warnings = new List<Warning>(); |
| 1 | 665 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 666 | | warnings, |
| 1 | 667 | | testFilePath |
| 1 | 668 | | ); |
| | 669 | |
|
| 1 | 670 | | Assert.Empty(warnings); |
| | 671 | |
|
| 1 | 672 | | } |
| | 673 | | [Fact] |
| | 674 | | public void PositiveTestCSVW188() |
| 1 | 675 | | { |
| 1 | 676 | | var testNumber = "188"; |
| 1 | 677 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 678 | | var warnings = new List<Warning>(); |
| 1 | 679 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 680 | | warnings, |
| 1 | 681 | | testFilePath |
| 1 | 682 | | ); |
| | 683 | |
|
| 1 | 684 | | Assert.Empty(warnings); |
| | 685 | |
|
| 1 | 686 | | } |
| | 687 | | [Fact] |
| | 688 | | public void PositiveTestCSVW189() |
| 1 | 689 | | { |
| 1 | 690 | | var testNumber = "189"; |
| 1 | 691 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 692 | | var warnings = new List<Warning>(); |
| 1 | 693 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 694 | | warnings, |
| 1 | 695 | | testFilePath |
| 1 | 696 | | ); |
| | 697 | |
|
| 1 | 698 | | Assert.Empty(warnings); |
| | 699 | |
|
| 1 | 700 | | } |
| | 701 | | [Fact] |
| | 702 | | public void PositiveTestCSVW190() |
| 1 | 703 | | { |
| 1 | 704 | | var testNumber = "190"; |
| 1 | 705 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 706 | | var warnings = new List<Warning>(); |
| 1 | 707 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 708 | | warnings, |
| 1 | 709 | | testFilePath |
| 1 | 710 | | ); |
| | 711 | |
|
| 1 | 712 | | Assert.Empty(warnings); |
| | 713 | |
|
| 1 | 714 | | } |
| | 715 | | [Fact] |
| | 716 | | public void PositiveTestCSVW192() |
| 1 | 717 | | { |
| 1 | 718 | | var testNumber = "192"; |
| 1 | 719 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 720 | | var warnings = new List<Warning>(); |
| 1 | 721 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 722 | | warnings, |
| 1 | 723 | | testFilePath |
| 1 | 724 | | ); |
| | 725 | |
|
| 1 | 726 | | Assert.Empty(warnings); |
| | 727 | |
|
| 1 | 728 | | } |
| | 729 | | [Fact] |
| | 730 | | public void PositiveTestCSVW193() |
| 1 | 731 | | { |
| 1 | 732 | | var testNumber = "193"; |
| 1 | 733 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 734 | | var warnings = new List<Warning>(); |
| 1 | 735 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 736 | | warnings, |
| 1 | 737 | | testFilePath |
| 1 | 738 | | ); |
| | 739 | |
|
| 1 | 740 | | Assert.Empty(warnings); |
| | 741 | |
|
| 1 | 742 | | } |
| | 743 | | [Fact] |
| | 744 | | public void PositiveTestCSVW194() |
| 1 | 745 | | { |
| 1 | 746 | | var testNumber = "194"; |
| 1 | 747 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 748 | | var warnings = new List<Warning>(); |
| 1 | 749 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 750 | | warnings, |
| 1 | 751 | | testFilePath |
| 1 | 752 | | ); |
| | 753 | |
|
| 1 | 754 | | Assert.Empty(warnings); |
| | 755 | |
|
| 1 | 756 | | } |
| | 757 | | [Fact] |
| | 758 | | public void PositiveTestCSVW195() |
| 1 | 759 | | { |
| 1 | 760 | | var testNumber = "195"; |
| 1 | 761 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 762 | | var warnings = new List<Warning>(); |
| 1 | 763 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 764 | | warnings, |
| 1 | 765 | | testFilePath |
| 1 | 766 | | ); |
| | 767 | |
|
| 1 | 768 | | Assert.Empty(warnings); |
| | 769 | |
|
| 1 | 770 | | } |
| | 771 | | [Fact] |
| | 772 | | public void PositiveTestCSVW196() |
| 1 | 773 | | { |
| 1 | 774 | | var testNumber = "196"; |
| 1 | 775 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 776 | | var warnings = new List<Warning>(); |
| 1 | 777 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 778 | | warnings, |
| 1 | 779 | | testFilePath |
| 1 | 780 | | ); |
| | 781 | |
|
| 1 | 782 | | Assert.Empty(warnings); |
| | 783 | |
|
| 1 | 784 | | } |
| | 785 | | [Fact] |
| | 786 | | public void PositiveTestCSVW197() |
| 1 | 787 | | { |
| 1 | 788 | | var testNumber = "197"; |
| 1 | 789 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 790 | | var warnings = new List<Warning>(); |
| 1 | 791 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 792 | | warnings, |
| 1 | 793 | | testFilePath |
| 1 | 794 | | ); |
| | 795 | |
|
| 1 | 796 | | Assert.Empty(warnings); |
| | 797 | |
|
| 1 | 798 | | } |
| | 799 | | [Fact] |
| | 800 | | public void PositiveTestCSVW198() |
| 1 | 801 | | { |
| 1 | 802 | | var testNumber = "198"; |
| 1 | 803 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 804 | | var warnings = new List<Warning>(); |
| 1 | 805 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 806 | | warnings, |
| 1 | 807 | | testFilePath |
| 1 | 808 | | ); |
| | 809 | |
|
| 1 | 810 | | Assert.Empty(warnings); |
| | 811 | |
|
| 1 | 812 | | } |
| | 813 | | [Fact] |
| | 814 | | public void PositiveTestCSVW202() |
| 1 | 815 | | { |
| 1 | 816 | | var testNumber = "202"; |
| 1 | 817 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 818 | | var warnings = new List<Warning>(); |
| 1 | 819 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 820 | | warnings, |
| 1 | 821 | | testFilePath |
| 1 | 822 | | ); |
| | 823 | |
|
| 1 | 824 | | Assert.Empty(warnings); |
| | 825 | |
|
| 1 | 826 | | } |
| | 827 | |
|
| | 828 | | [Fact] |
| | 829 | | public void PositiveTestCSVW203() |
| 1 | 830 | | { |
| 1 | 831 | | var testNumber = "203"; |
| 1 | 832 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 833 | | var warnings = new List<Warning>(); |
| 1 | 834 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 835 | | warnings, |
| 1 | 836 | | testFilePath |
| 1 | 837 | | ); |
| | 838 | |
|
| 1 | 839 | | Assert.Empty(warnings); |
| | 840 | |
|
| 1 | 841 | | } |
| | 842 | | [Fact] |
| | 843 | | public void PositiveTestCSVW204() |
| 1 | 844 | | { |
| 1 | 845 | | var testNumber = "204"; |
| 1 | 846 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 847 | | var warnings = new List<Warning>(); |
| 1 | 848 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 849 | | warnings, |
| 1 | 850 | | testFilePath |
| 1 | 851 | | ); |
| | 852 | |
|
| 1 | 853 | | Assert.Empty(warnings); |
| | 854 | |
|
| 1 | 855 | | } |
| | 856 | | [Fact] |
| | 857 | | public void PositiveTestCSVW205() |
| 1 | 858 | | { |
| 1 | 859 | | var testNumber = "205"; |
| 1 | 860 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 861 | | var warnings = new List<Warning>(); |
| 1 | 862 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 863 | | warnings, |
| 1 | 864 | | testFilePath |
| 1 | 865 | | ); |
| | 866 | |
|
| 1 | 867 | | Assert.Empty(warnings); |
| | 868 | |
|
| 1 | 869 | | } |
| | 870 | | [Fact] |
| | 871 | | public void PositiveTestCSVW206() |
| 1 | 872 | | { |
| 1 | 873 | | var testNumber = "206"; |
| 1 | 874 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 875 | | var warnings = new List<Warning>(); |
| 1 | 876 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 877 | | warnings, |
| 1 | 878 | | testFilePath |
| 1 | 879 | | ); |
| | 880 | |
|
| 1 | 881 | | Assert.Empty(warnings); |
| | 882 | |
|
| 1 | 883 | | } |
| | 884 | | [Fact] |
| | 885 | | public void PositiveTestCSVW207() |
| 1 | 886 | | { |
| 1 | 887 | | var testNumber = "207"; |
| 1 | 888 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 889 | | var warnings = new List<Warning>(); |
| 1 | 890 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 891 | | warnings, |
| 1 | 892 | | testFilePath |
| 1 | 893 | | ); |
| | 894 | |
|
| 1 | 895 | | Assert.Empty(warnings); |
| | 896 | |
|
| 1 | 897 | | } |
| | 898 | | [Fact] |
| | 899 | | public void PositiveTestCSVW208() |
| 1 | 900 | | { |
| 1 | 901 | | var testNumber = "208"; |
| 1 | 902 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 903 | | var warnings = new List<Warning>(); |
| 1 | 904 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 905 | | warnings, |
| 1 | 906 | | testFilePath |
| 1 | 907 | | ); |
| | 908 | |
|
| 1 | 909 | | Assert.Empty(warnings); |
| | 910 | |
|
| 1 | 911 | | } |
| | 912 | | [Fact] |
| | 913 | | public void PositiveTestCSVW209() |
| 1 | 914 | | { |
| 1 | 915 | | var testNumber = "209"; |
| 1 | 916 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 917 | | var warnings = new List<Warning>(); |
| 1 | 918 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 919 | | warnings, |
| 1 | 920 | | testFilePath |
| 1 | 921 | | ); |
| | 922 | |
|
| 1 | 923 | | Assert.Empty(warnings); |
| | 924 | |
|
| 1 | 925 | | } |
| | 926 | | [Fact] |
| | 927 | | public void PositiveTestCSVW210() |
| 1 | 928 | | { |
| 1 | 929 | | var testNumber = "210"; |
| 1 | 930 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 931 | | var warnings = new List<Warning>(); |
| 1 | 932 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 933 | | warnings, |
| 1 | 934 | | testFilePath |
| 1 | 935 | | ); |
| | 936 | |
|
| 1 | 937 | | Assert.Empty(warnings); |
| | 938 | |
|
| 1 | 939 | | } |
| | 940 | | [Fact] |
| | 941 | | public void PositiveTestCSVW211() |
| 1 | 942 | | { |
| 1 | 943 | | var testNumber = "211"; |
| 1 | 944 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 945 | | var warnings = new List<Warning>(); |
| 1 | 946 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 947 | | warnings, |
| 1 | 948 | | testFilePath |
| 1 | 949 | | ); |
| | 950 | |
|
| 1 | 951 | | Assert.Empty(warnings); |
| | 952 | |
|
| 1 | 953 | | } |
| | 954 | | [Fact] |
| | 955 | | public void PositiveTestCSVW212() |
| 1 | 956 | | { |
| 1 | 957 | | var testNumber = "212"; |
| 1 | 958 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 959 | | var warnings = new List<Warning>(); |
| 1 | 960 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 961 | | warnings, |
| 1 | 962 | | testFilePath |
| 1 | 963 | | ); |
| | 964 | |
|
| 1 | 965 | | Assert.Empty(warnings); |
| | 966 | |
|
| 1 | 967 | | } |
| | 968 | | [Fact] |
| | 969 | | public void PositiveTestCSVW213() |
| 1 | 970 | | { |
| 1 | 971 | | var testNumber = "213"; |
| 1 | 972 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 973 | | var warnings = new List<Warning>(); |
| 1 | 974 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 975 | | warnings, |
| 1 | 976 | | testFilePath |
| 1 | 977 | | ); |
| | 978 | |
|
| 1 | 979 | | Assert.Empty(warnings); |
| | 980 | |
|
| 1 | 981 | | } |
| | 982 | | [Fact] |
| | 983 | | public void PositiveTestCSVW214() |
| 1 | 984 | | { |
| 1 | 985 | | var testNumber = "214"; |
| 1 | 986 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 987 | | var warnings = new List<Warning>(); |
| 1 | 988 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 989 | | warnings, |
| 1 | 990 | | testFilePath |
| 1 | 991 | | ); |
| | 992 | |
|
| 1 | 993 | | Assert.Empty(warnings); |
| | 994 | |
|
| 1 | 995 | | } |
| | 996 | | [Fact] |
| | 997 | | public void PositiveTestCSVW215() |
| 1 | 998 | | { |
| 1 | 999 | | var testNumber = "215"; |
| 1 | 1000 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1001 | | var warnings = new List<Warning>(); |
| 1 | 1002 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1003 | | warnings, |
| 1 | 1004 | | testFilePath |
| 1 | 1005 | | ); |
| | 1006 | |
|
| 1 | 1007 | | Assert.Empty(warnings); |
| | 1008 | |
|
| 1 | 1009 | | } |
| | 1010 | | [Fact] |
| | 1011 | | public void PositiveTestCSVW228() |
| 1 | 1012 | | { |
| 1 | 1013 | | var testNumber = "228"; |
| 1 | 1014 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1015 | | var warnings = new List<Warning>(); |
| 1 | 1016 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1017 | | warnings, |
| 1 | 1018 | | testFilePath |
| 1 | 1019 | | ); |
| | 1020 | |
|
| 1 | 1021 | | Assert.Empty(warnings); |
| | 1022 | |
|
| 1 | 1023 | | } |
| | 1024 | | [Fact] |
| | 1025 | | public void PositiveTestCSVW229() |
| 1 | 1026 | | { |
| 1 | 1027 | | var testNumber = "229"; |
| 1 | 1028 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1029 | | var warnings = new List<Warning>(); |
| 1 | 1030 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1031 | | warnings, |
| 1 | 1032 | | testFilePath |
| 1 | 1033 | | ); |
| | 1034 | |
|
| 1 | 1035 | | Assert.Empty(warnings); |
| | 1036 | |
|
| 1 | 1037 | | } |
| | 1038 | | [Fact] |
| | 1039 | | public void PositiveTestCSVW230() |
| 1 | 1040 | | { |
| 1 | 1041 | | var testNumber = "230"; |
| 1 | 1042 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1043 | | var warnings = new List<Warning>(); |
| 1 | 1044 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1045 | | warnings, |
| 1 | 1046 | | testFilePath |
| 1 | 1047 | | ); |
| | 1048 | |
|
| 1 | 1049 | | Assert.Empty(warnings); |
| | 1050 | |
|
| 1 | 1051 | | } |
| | 1052 | | [Fact] |
| | 1053 | | public void PositiveTestCSVW231() |
| 1 | 1054 | | { |
| 1 | 1055 | | var testNumber = "231"; |
| 1 | 1056 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1057 | | var warnings = new List<Warning>(); |
| 1 | 1058 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1059 | | warnings, |
| 1 | 1060 | | testFilePath |
| 1 | 1061 | | ); |
| | 1062 | |
|
| 1 | 1063 | | Assert.Empty(warnings); |
| | 1064 | |
|
| 1 | 1065 | | } |
| | 1066 | | [Fact] |
| | 1067 | | public void PositiveTestCSVW232() |
| 1 | 1068 | | { |
| 1 | 1069 | | var testNumber = "232"; |
| 1 | 1070 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1071 | | var warnings = new List<Warning>(); |
| 1 | 1072 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1073 | | warnings, |
| 1 | 1074 | | testFilePath |
| 1 | 1075 | | ); |
| | 1076 | |
|
| 1 | 1077 | | Assert.Empty(warnings); |
| | 1078 | |
|
| 1 | 1079 | | } |
| | 1080 | | [Fact] |
| | 1081 | | public void PositiveTestCSVW233() |
| 1 | 1082 | | { |
| 1 | 1083 | | var testNumber = "233"; |
| 1 | 1084 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1085 | | var warnings = new List<Warning>(); |
| 1 | 1086 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1087 | | warnings, |
| 1 | 1088 | | testFilePath |
| 1 | 1089 | | ); |
| | 1090 | |
|
| 1 | 1091 | | Assert.Empty(warnings); |
| | 1092 | |
|
| 1 | 1093 | | } |
| | 1094 | | [Fact] |
| | 1095 | | public void PositiveTestCSVW234() |
| 1 | 1096 | | { |
| 1 | 1097 | | var testNumber = "234"; |
| 1 | 1098 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1099 | | var warnings = new List<Warning>(); |
| 1 | 1100 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1101 | | warnings, |
| 1 | 1102 | | testFilePath |
| 1 | 1103 | | ); |
| | 1104 | |
|
| 1 | 1105 | | Assert.Empty(warnings); |
| | 1106 | |
|
| 1 | 1107 | | } |
| | 1108 | | [Fact] |
| | 1109 | | public void PositiveTestCSVW235() |
| 1 | 1110 | | { |
| 1 | 1111 | | var testNumber = "235"; |
| 1 | 1112 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1113 | | var warnings = new List<Warning>(); |
| 1 | 1114 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 1115 | | warnings, |
| 1 | 1116 | | testFilePath |
| 1 | 1117 | | ); |
| | 1118 | |
|
| 1 | 1119 | | Assert.Empty(warnings); |
| | 1120 | |
|
| 1 | 1121 | | } |
| | 1122 | | [Fact] |
| | 1123 | | public void PositiveTestCSVW236() |
| 1 | 1124 | | { |
| 1 | 1125 | | var testNumber = "236"; |
| 1 | 1126 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1127 | | var warnings = new List<Warning>(); |
| 1 | 1128 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 1129 | | warnings, |
| 1 | 1130 | | testFilePath |
| 1 | 1131 | | ); |
| | 1132 | |
|
| 1 | 1133 | | Assert.Empty(warnings); |
| | 1134 | |
|
| 1 | 1135 | | } |
| | 1136 | | [Fact] |
| | 1137 | | public void PositiveTestCSVW237() |
| 1 | 1138 | | { |
| 1 | 1139 | | var testNumber = "237"; |
| 1 | 1140 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1141 | | var warnings = new List<Warning>(); |
| 1 | 1142 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 1143 | | warnings, |
| 1 | 1144 | | testFilePath |
| 1 | 1145 | | ); |
| | 1146 | |
|
| 1 | 1147 | | Assert.Empty(warnings); |
| | 1148 | |
|
| 1 | 1149 | | } |
| | 1150 | | [Fact] |
| | 1151 | | public void PositiveTestCSVW242() |
| 1 | 1152 | | { |
| 1 | 1153 | | var testNumber = "242"; |
| 1 | 1154 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1155 | | var warnings = new List<Warning>(); |
| 1 | 1156 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1157 | | warnings, |
| 1 | 1158 | | testFilePath |
| 1 | 1159 | | ); |
| | 1160 | |
|
| 1 | 1161 | | Assert.Empty(warnings); |
| | 1162 | |
|
| 1 | 1163 | | } |
| | 1164 | |
|
| | 1165 | | [Fact] |
| | 1166 | | public void PositiveTestCSVW245() |
| 1 | 1167 | | { |
| 1 | 1168 | | var testNumber = "245"; |
| 1 | 1169 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1170 | | var warnings = new List<Warning>(); |
| 1 | 1171 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1172 | | warnings, |
| 1 | 1173 | | testFilePath |
| 1 | 1174 | | ); |
| | 1175 | |
|
| 1 | 1176 | | Assert.Empty(warnings); |
| | 1177 | |
|
| 1 | 1178 | | } |
| | 1179 | | [Fact] |
| | 1180 | | public void PositiveTestCSVW246() |
| 1 | 1181 | | { |
| 1 | 1182 | | var testNumber = "246"; |
| 1 | 1183 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1184 | | var warnings = new List<Warning>(); |
| 1 | 1185 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1186 | | warnings, |
| 1 | 1187 | | testFilePath |
| 1 | 1188 | | ); |
| | 1189 | |
|
| 1 | 1190 | | Assert.Empty(warnings); |
| | 1191 | |
|
| 1 | 1192 | | } |
| | 1193 | | [Fact] |
| | 1194 | | public void PositiveTestCSVW247() |
| 1 | 1195 | | { |
| 1 | 1196 | | var testNumber = "247"; |
| 1 | 1197 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1198 | | var warnings = new List<Warning>(); |
| 1 | 1199 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1200 | | warnings, |
| 1 | 1201 | | testFilePath |
| 1 | 1202 | | ); |
| | 1203 | |
|
| 1 | 1204 | | Assert.Empty(warnings); |
| | 1205 | |
|
| 1 | 1206 | | } |
| | 1207 | | [Fact] |
| | 1208 | | public void PositiveTestCSVW248() |
| 1 | 1209 | | { |
| 1 | 1210 | | var testNumber = "248"; |
| 1 | 1211 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1212 | | var warnings = new List<Warning>(); |
| 1 | 1213 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1214 | | warnings, |
| 1 | 1215 | | testFilePath |
| 1 | 1216 | | ); |
| | 1217 | |
|
| 1 | 1218 | | Assert.Empty(warnings); |
| | 1219 | |
|
| 1 | 1220 | | } |
| | 1221 | |
|
| | 1222 | | [Fact] |
| | 1223 | | public void PositiveTestCSVW250() |
| 1 | 1224 | | { |
| 1 | 1225 | | var testNumber = "250"; |
| 1 | 1226 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1227 | | var warnings = new List<Warning>(); |
| 1 | 1228 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 1229 | | warnings, |
| 1 | 1230 | | testFilePath |
| 1 | 1231 | | ); |
| | 1232 | |
|
| 1 | 1233 | | Assert.Empty(warnings); |
| | 1234 | |
|
| 1 | 1235 | | } |
| | 1236 | | [Fact] |
| | 1237 | | public void PositiveTestCSVW254() |
| 1 | 1238 | | { |
| 1 | 1239 | | var testNumber = "254"; |
| 1 | 1240 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1241 | | var warnings = new List<Warning>(); |
| 1 | 1242 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1243 | | warnings, |
| 1 | 1244 | | testFilePath |
| 1 | 1245 | | ); |
| | 1246 | |
|
| 1 | 1247 | | Assert.Empty(warnings); |
| | 1248 | |
|
| 1 | 1249 | | } |
| | 1250 | | [Fact] |
| | 1251 | | public void PositiveTestCSVW255() |
| 1 | 1252 | | { |
| 1 | 1253 | | var testNumber = "255"; |
| 1 | 1254 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1255 | | var warnings = new List<Warning>(); |
| 1 | 1256 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 1257 | | warnings, |
| 1 | 1258 | | testFilePath |
| 1 | 1259 | | ); |
| | 1260 | |
|
| 1 | 1261 | | Assert.Empty(warnings); |
| | 1262 | |
|
| 1 | 1263 | | } |
| | 1264 | | [Fact] |
| | 1265 | | public void PositiveTestCSVW256() |
| 1 | 1266 | | { |
| 1 | 1267 | | var testNumber = "256"; |
| 1 | 1268 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1269 | | var warnings = new List<Warning>(); |
| 1 | 1270 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 1271 | | warnings, |
| 1 | 1272 | | testFilePath |
| 1 | 1273 | | ); |
| | 1274 | |
|
| 1 | 1275 | | Assert.Empty(warnings); |
| | 1276 | |
|
| 1 | 1277 | | } |
| | 1278 | | [Fact] |
| | 1279 | | public void PositiveTestCSVW257() |
| 1 | 1280 | | { |
| 1 | 1281 | | var testNumber = "257"; |
| 1 | 1282 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1283 | | var warnings = new List<Warning>(); |
| 1 | 1284 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1285 | | warnings, |
| 1 | 1286 | | testFilePath |
| 1 | 1287 | | ); |
| | 1288 | |
|
| 1 | 1289 | | Assert.Empty(warnings); |
| | 1290 | |
|
| 1 | 1291 | | } |
| | 1292 | | [Fact] |
| | 1293 | | public void PositiveTestCSVW258() |
| 1 | 1294 | | { |
| 1 | 1295 | | var testNumber = "258"; |
| 1 | 1296 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1297 | | var warnings = new List<Warning>(); |
| 1 | 1298 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1299 | | warnings, |
| 1 | 1300 | | testFilePath |
| 1 | 1301 | | ); |
| | 1302 | |
|
| 1 | 1303 | | Assert.Empty(warnings); |
| | 1304 | |
|
| 1 | 1305 | | } |
| | 1306 | |
|
| | 1307 | | [Fact] |
| | 1308 | | public void PositiveTestCSVW263() |
| 1 | 1309 | | { |
| 1 | 1310 | | var testNumber = "263"; |
| 1 | 1311 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1312 | | var warnings = new List<Warning>(); |
| 1 | 1313 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1314 | | warnings, |
| 1 | 1315 | | testFilePath |
| 1 | 1316 | | ); |
| | 1317 | |
|
| 1 | 1318 | | Assert.Empty(warnings); |
| | 1319 | |
|
| 1 | 1320 | | } |
| | 1321 | | [Fact] |
| | 1322 | | public void PositiveTestCSVW264() |
| 1 | 1323 | | { |
| 1 | 1324 | | var testNumber = "264"; |
| 1 | 1325 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1326 | | var warnings = new List<Warning>(); |
| 1 | 1327 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1328 | | warnings, |
| 1 | 1329 | | testFilePath |
| 1 | 1330 | | ); |
| | 1331 | |
|
| 1 | 1332 | | Assert.Empty(warnings); |
| | 1333 | |
|
| 1 | 1334 | | } |
| | 1335 | |
|
| | 1336 | | [Fact] |
| | 1337 | | public void PositiveTestCSVW268() |
| 1 | 1338 | | { |
| 1 | 1339 | | var testNumber = "268"; |
| 1 | 1340 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1341 | | var warnings = new List<Warning>(); |
| 1 | 1342 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1343 | | warnings, |
| 1 | 1344 | | testFilePath |
| 1 | 1345 | | ); |
| | 1346 | |
|
| 1 | 1347 | | Assert.Empty(warnings); |
| | 1348 | |
|
| 1 | 1349 | | } |
| | 1350 | |
|
| | 1351 | | [Fact] |
| | 1352 | | public void PositiveTestCSVW273() |
| 1 | 1353 | | { |
| 1 | 1354 | | var testNumber = "273"; |
| 1 | 1355 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1356 | | var warnings = new List<Warning>(); |
| | 1357 | |
|
| 1 | 1358 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1359 | | warnings, |
| 1 | 1360 | | testFilePath |
| 1 | 1361 | | ); |
| | 1362 | |
|
| 1 | 1363 | | Assert.Empty(warnings); |
| | 1364 | |
|
| 1 | 1365 | | } |
| | 1366 | | [Fact] |
| | 1367 | | public void PositiveTestCSVW278() |
| 1 | 1368 | | { |
| 1 | 1369 | | var testNumber = "278"; |
| 1 | 1370 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1371 | | var warnings = new List<Warning>(); |
| 1 | 1372 | | var tableDescriptor = MetadataParserValidator.ProcessTableGroup( |
| 1 | 1373 | | warnings, |
| 1 | 1374 | | testFilePath |
| 1 | 1375 | | ); |
| | 1376 | |
|
| 1 | 1377 | | Assert.Empty(warnings); |
| | 1378 | |
|
| 1 | 1379 | | } |
| | 1380 | | [Fact] |
| | 1381 | | public void PositiveTestCSVW279() |
| 1 | 1382 | | { |
| 1 | 1383 | | var testNumber = "279"; |
| 1 | 1384 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1385 | | var warnings = new List<Warning>(); |
| 1 | 1386 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1387 | | warnings, |
| 1 | 1388 | | testFilePath |
| 1 | 1389 | | ); |
| | 1390 | |
|
| 1 | 1391 | | Assert.Empty(warnings); |
| | 1392 | |
|
| 1 | 1393 | | } |
| | 1394 | | [Fact] |
| | 1395 | | public void PositiveTestCSVW280() |
| 1 | 1396 | | { |
| 1 | 1397 | | var testNumber = "280"; |
| 1 | 1398 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1399 | | var warnings = new List<Warning>(); |
| 1 | 1400 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1401 | | warnings, |
| 1 | 1402 | | testFilePath |
| 1 | 1403 | | ); |
| | 1404 | |
|
| 1 | 1405 | | Assert.Empty(warnings); |
| | 1406 | |
|
| 1 | 1407 | | } |
| | 1408 | |
|
| | 1409 | | [Fact] |
| | 1410 | | public void PositiveTestCSVW281() |
| 1 | 1411 | | { |
| 1 | 1412 | | var testNumber = "281"; |
| 1 | 1413 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1414 | | var warnings = new List<Warning>(); |
| 1 | 1415 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1416 | | warnings, |
| 1 | 1417 | | testFilePath |
| 1 | 1418 | | ); |
| | 1419 | |
|
| 1 | 1420 | | Assert.Empty(warnings); |
| | 1421 | |
|
| 1 | 1422 | | } |
| | 1423 | | [Fact] |
| | 1424 | | public void PositiveTestCSVW282() |
| 1 | 1425 | | { |
| 1 | 1426 | | var testNumber = "282"; |
| 1 | 1427 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1428 | | var warnings = new List<Warning>(); |
| 1 | 1429 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1430 | | warnings, |
| 1 | 1431 | | testFilePath |
| 1 | 1432 | | ); |
| | 1433 | |
|
| 1 | 1434 | | Assert.Empty(warnings); |
| | 1435 | |
|
| 1 | 1436 | | } |
| | 1437 | | [Fact] |
| | 1438 | | public void PositiveTestCSVW283() |
| 1 | 1439 | | { |
| 1 | 1440 | | var testNumber = "281"; |
| 1 | 1441 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1442 | | var warnings = new List<Warning>(); |
| 1 | 1443 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1444 | | warnings, |
| 1 | 1445 | | testFilePath |
| 1 | 1446 | | ); |
| | 1447 | |
|
| 1 | 1448 | | Assert.Empty(warnings); |
| | 1449 | |
|
| 1 | 1450 | | } |
| | 1451 | | [Fact] |
| | 1452 | | public void PositiveTestCSVW284() |
| 1 | 1453 | | { |
| 1 | 1454 | | var testNumber = "284"; |
| 1 | 1455 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1456 | | var warnings = new List<Warning>(); |
| 1 | 1457 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1458 | | warnings, |
| 1 | 1459 | | testFilePath |
| 1 | 1460 | | ); |
| | 1461 | |
|
| 1 | 1462 | | Assert.Empty(warnings); |
| | 1463 | |
|
| 1 | 1464 | | } |
| | 1465 | | [Fact] |
| | 1466 | | public void PositiveTestCSVW285() |
| 1 | 1467 | | { |
| 1 | 1468 | | var testNumber = "285"; |
| 1 | 1469 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1470 | | var warnings = new List<Warning>(); |
| 1 | 1471 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1472 | | warnings, |
| 1 | 1473 | | testFilePath |
| 1 | 1474 | | ); |
| | 1475 | |
|
| 1 | 1476 | | Assert.Empty(warnings); |
| | 1477 | |
|
| 1 | 1478 | | } |
| | 1479 | |
|
| | 1480 | | [Fact] |
| | 1481 | | public void PositiveTestCSVW305() |
| 1 | 1482 | | { |
| 1 | 1483 | | var testNumber = "305"; |
| 1 | 1484 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1485 | | var warnings = new List<Warning>(); |
| 1 | 1486 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1487 | | warnings, |
| 1 | 1488 | | testFilePath |
| 1 | 1489 | | ); |
| | 1490 | |
|
| 1 | 1491 | | Assert.Empty(warnings); |
| | 1492 | |
|
| 1 | 1493 | | } |
| | 1494 | |
|
| | 1495 | | [Fact] |
| | 1496 | | public void PositiveTestCSVW306() |
| 1 | 1497 | | { |
| 1 | 1498 | | var testNumber = "306"; |
| 1 | 1499 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1500 | | var warnings = new List<Warning>(); |
| 1 | 1501 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1502 | | warnings, |
| 1 | 1503 | | testFilePath |
| 1 | 1504 | | ); |
| | 1505 | |
|
| 1 | 1506 | | Assert.Empty(warnings); |
| | 1507 | |
|
| 1 | 1508 | | } |
| | 1509 | |
|
| | 1510 | | [Fact] |
| | 1511 | | public void PositiveTestCSVW307() |
| 1 | 1512 | | { |
| 1 | 1513 | | var testNumber = "307"; |
| 1 | 1514 | | var testFilePath = Path.Combine(testFilesDirectory, "test" + testNumber, "test" + testNumber + "-metadata.js |
| 1 | 1515 | | var warnings = new List<Warning>(); |
| 1 | 1516 | | var tableDescriptor = MetadataParserValidator.ProcessTable( |
| 1 | 1517 | | warnings, |
| 1 | 1518 | | testFilePath |
| 1 | 1519 | | ); |
| | 1520 | |
|
| 1 | 1521 | | Assert.Empty(warnings); |
| | 1522 | |
|
| 1 | 1523 | | } |
| | 1524 | | } |
| | 1525 | | } |