Update for some unit tests

This commit is contained in:
2019-11-18 14:00:08 -05:00
parent bc1f70e0dc
commit 51301528df
5 changed files with 8 additions and 26 deletions
@@ -35,17 +35,6 @@ namespace LeafWeb.Core.Tests.Parsers
}
}
[Test]
public void Parse_Find_Misencoded_Characters_test()
{
var fileInfo = new FileInfo(@"C:\Users\poprhythm\Documents\code\LeafWeb\Core\DAL\InitialData\fluxnet_site_list_all_October2015_with_joins_corrected.csv");
var parser = new FluxnetSiteCsvParser(fileInfo);
foreach (var fns in parser.Parse().Where(f => Regex.IsMatch(f.SiteName, @"[^\x00-\x7F]") || f.SiteName.Contains("?")))
{
Console.WriteLine($"{fns.FluxnetId} / {fns.SiteName}");
}
}
[Test]
public void Parse_Find_Duplicate_Ids()
{