about summary refs log tree commit diff
path: root/IRCSharp.Tests/Tokenization
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2022-03-25 15:11:48 -0400
committerBen Harris <ben@tilde.team>2022-03-25 15:11:55 -0400
commitbebc1bc6f0f41a2256aae8522edf0b1a151195e0 (patch)
tree6d6d109de7fc02f1c17907caa2470c7452489cd9 /IRCSharp.Tests/Tokenization
parent041264f05f590dbbb3c734301091dc79ce8885fa (diff)
fix test namespaces main
Diffstat (limited to 'IRCSharp.Tests/Tokenization')
-rw-r--r--IRCSharp.Tests/Tokenization/Data/JoinModel.cs2
-rw-r--r--IRCSharp.Tests/Tokenization/Data/SplitModel.cs2
-rw-r--r--IRCSharp.Tests/Tokenization/Format.cs3
-rw-r--r--IRCSharp.Tests/Tokenization/Hostmask.cs5
-rw-r--r--IRCSharp.Tests/Tokenization/Parser.cs5
-rw-r--r--IRCSharp.Tests/Tokenization/StatefulDecoder.cs3
-rw-r--r--IRCSharp.Tests/Tokenization/StatefulEncoder.cs3
-rw-r--r--IRCSharp.Tests/Tokenization/Tokenization.cs3
8 files changed, 16 insertions, 10 deletions
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