diff options
Diffstat (limited to 'Aggregator')
-rw-r--r-- | Aggregator/Classes/Article.cs | 2 | ||||
-rw-r--r-- | Aggregator/Classes/Config.cs | 2 | ||||
-rw-r--r-- | Aggregator/Parser/Download.cs | 2 | ||||
-rw-r--r-- | Aggregator/Tests/DownloadTests.cs | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Aggregator/Classes/Article.cs b/Aggregator/Classes/Article.cs index 48aff3b..180726d 100644 --- a/Aggregator/Classes/Article.cs +++ b/Aggregator/Classes/Article.cs @@ -1,6 +1,6 @@ using System; -namespace Classes { +namespace Aggregator.Classes { /// <summary> /// Class to represent Articles in C# /// </summary> diff --git a/Aggregator/Classes/Config.cs b/Aggregator/Classes/Config.cs index 9cf3d82..0641dbf 100644 --- a/Aggregator/Classes/Config.cs +++ b/Aggregator/Classes/Config.cs @@ -1,6 +1,6 @@ using System; -namespace Classes { +namespace Aggregator.Classes { /// <summary> /// Class to represent position for each piece of data in a class /// To be used in conjunction with article for each source diff --git a/Aggregator/Parser/Download.cs b/Aggregator/Parser/Download.cs index eb46dd0..1249771 100644 --- a/Aggregator/Parser/Download.cs +++ b/Aggregator/Parser/Download.cs @@ -1,7 +1,7 @@ using System.Net; using System.Threading.Tasks; -namespace Parser { +namespace Aggregator.Parser { public static class Download { /// <summary> /// Download source from a given site synchronously diff --git a/Aggregator/Tests/DownloadTests.cs b/Aggregator/Tests/DownloadTests.cs index b45adc9..fd647b2 100644 --- a/Aggregator/Tests/DownloadTests.cs +++ b/Aggregator/Tests/DownloadTests.cs @@ -1,11 +1,11 @@ using System; using System.Xml; using System.Xml.Linq; -using Classes; -using Parser; +using Aggregator.Classes; +using Aggregator.Parser; using Xunit; -namespace Tests { +namespace Aggregator.Tests { public class DownloadTests { [Fact] public void Test_DownloadXMLSync() { |