aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'Aggregator/Tests')
-rw-r--r--Aggregator/Tests/ParserServiceTests.cs20
1 files changed, 20 insertions, 0 deletions
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