From 09f96ad12a5c44a5a1dd05130ba9d7eed3079ba3 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 4 Feb 2019 00:24:50 +0000 Subject: Made new class to test ParserService --- Aggregator/Tests/ParserServiceTests.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Aggregator/Tests/ParserServiceTests.cs (limited to 'Aggregator/Tests/ParserServiceTests.cs') diff --git a/Aggregator/Tests/ParserServiceTests.cs b/Aggregator/Tests/ParserServiceTests.cs new file mode 100644 index 0000000..eaa1102 --- /dev/null +++ b/Aggregator/Tests/ParserServiceTests.cs @@ -0,0 +1,20 @@ +using System; +using Aggregator.Parser; +using Aggregator.Classes; + +using Xunit; + +namespace Aggregator.Tests { + public static class ParserServiceTests { + private static Config TestConfig = new Config() + { + Source = "BBC", + Title = 0, + Description = 1, + ArticleLink = 2, + ImageLink = 5, + PublishDate = 4 + }; + + } +} \ No newline at end of file -- cgit v1.2.3-13-gbd6f