aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/Tests/ParserServiceTests.cs
blob: eaa1102fe92afd20dd6afdd5cb914406232b17ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
        };

    }
}