From bebc1bc6f0f41a2256aae8522edf0b1a151195e0 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 25 Mar 2022 15:11:48 -0400 Subject: fix test namespaces --- IRCSharp.Tests/Tokenization/Data/JoinModel.cs | 2 +- IRCSharp.Tests/Tokenization/Data/SplitModel.cs | 2 +- IRCSharp.Tests/Tokenization/Format.cs | 3 ++- IRCSharp.Tests/Tokenization/Hostmask.cs | 5 +++-- IRCSharp.Tests/Tokenization/Parser.cs | 5 +++-- IRCSharp.Tests/Tokenization/StatefulDecoder.cs | 3 ++- IRCSharp.Tests/Tokenization/StatefulEncoder.cs | 3 ++- IRCSharp.Tests/Tokenization/Tokenization.cs | 3 ++- 8 files changed, 16 insertions(+), 10 deletions(-) (limited to 'IRCSharp.Tests/Tokenization') diff --git a/IRCSharp.Tests/Tokenization/Data/JoinModel.cs b/IRCSharp.Tests/Tokenization/Data/JoinModel.cs index e54f4cf..638ae23 100644 --- a/IRCSharp.Tests/Tokenization/Data/JoinModel.cs +++ b/IRCSharp.Tests/Tokenization/Data/JoinModel.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using YamlDotNet.Serialization; -namespace IRCTokens.Tests.Data +namespace IRCSharp.Tests.Tokenization.Data { public class JoinModel { diff --git a/IRCSharp.Tests/Tokenization/Data/SplitModel.cs b/IRCSharp.Tests/Tokenization/Data/SplitModel.cs index 5386326..1856dd9 100644 --- a/IRCSharp.Tests/Tokenization/Data/SplitModel.cs +++ b/IRCSharp.Tests/Tokenization/Data/SplitModel.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace IRCTokens.Tests.Data +namespace IRCSharp.Tests.Tokenization.Data { public class SplitModel { diff --git a/IRCSharp.Tests/Tokenization/Format.cs b/IRCSharp.Tests/Tokenization/Format.cs index 7224f97..5dc589a 100644 --- a/IRCSharp.Tests/Tokenization/Format.cs +++ b/IRCSharp.Tests/Tokenization/Format.cs @@ -1,8 +1,9 @@ using System; using System.Collections.Generic; +using IRCTokens; using Microsoft.VisualStudio.TestTools.UnitTesting; -namespace IRCTokens.Tests +namespace IRCSharp.Tests.Tokenization { [TestClass] public class Format diff --git a/IRCSharp.Tests/Tokenization/Hostmask.cs b/IRCSharp.Tests/Tokenization/Hostmask.cs index 17c5ad7..a7de338 100644 --- a/IRCSharp.Tests/Tokenization/Hostmask.cs +++ b/IRCSharp.Tests/Tokenization/Hostmask.cs @@ -1,6 +1,7 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +using IRCTokens; +using Microsoft.VisualStudio.TestTools.UnitTesting; -namespace IRCTokens.Tests +namespace IRCSharp.Tests.Tokenization { [TestClass] public class Hostmask diff --git a/IRCSharp.Tests/Tokenization/Parser.cs b/IRCSharp.Tests/Tokenization/Parser.cs index 40ff803..4f4338b 100644 --- a/IRCSharp.Tests/Tokenization/Parser.cs +++ b/IRCSharp.Tests/Tokenization/Parser.cs @@ -1,12 +1,13 @@ using System.Collections.Generic; using System.Globalization; using System.IO; -using IRCTokens.Tests.Data; +using IRCSharp.Tests.Tokenization.Data; +using IRCTokens; using Microsoft.VisualStudio.TestTools.UnitTesting; using YamlDotNet.Serialization; using YamlDotNet.Serialization.NamingConventions; -namespace IRCTokens.Tests +namespace IRCSharp.Tests.Tokenization { [TestClass] public class Parser diff --git a/IRCSharp.Tests/Tokenization/StatefulDecoder.cs b/IRCSharp.Tests/Tokenization/StatefulDecoder.cs index 4da7690..7b9992d 100644 --- a/IRCSharp.Tests/Tokenization/StatefulDecoder.cs +++ b/IRCSharp.Tests/Tokenization/StatefulDecoder.cs @@ -1,8 +1,9 @@ using System.Collections.Generic; using System.Text; +using IRCTokens; using Microsoft.VisualStudio.TestTools.UnitTesting; -namespace IRCTokens.Tests +namespace IRCSharp.Tests.Tokenization { [TestClass] public class StatefulDecoder diff --git a/IRCSharp.Tests/Tokenization/StatefulEncoder.cs b/IRCSharp.Tests/Tokenization/StatefulEncoder.cs index d1e1e3e..50d2bd5 100644 --- a/IRCSharp.Tests/Tokenization/StatefulEncoder.cs +++ b/IRCSharp.Tests/Tokenization/StatefulEncoder.cs @@ -1,7 +1,8 @@ using System.Text; +using IRCTokens; using Microsoft.VisualStudio.TestTools.UnitTesting; -namespace IRCTokens.Tests +namespace IRCSharp.Tests.Tokenization { [TestClass] public class StatefulEncoder diff --git a/IRCSharp.Tests/Tokenization/Tokenization.cs b/IRCSharp.Tests/Tokenization/Tokenization.cs index c4c5c5a..b270e4e 100644 --- a/IRCSharp.Tests/Tokenization/Tokenization.cs +++ b/IRCSharp.Tests/Tokenization/Tokenization.cs @@ -1,9 +1,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using IRCTokens; using Microsoft.VisualStudio.TestTools.UnitTesting; -namespace IRCTokens.Tests +namespace IRCSharp.Tests.Tokenization { [TestClass] public class Tokenization -- cgit 1.4.1