From 933a4f85604e21445c9bac8272d64cf3e6f65e00 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 22 Apr 2020 16:28:51 -0400 Subject: rename to IrcSharp also tidy up formatting with vs tools --- IrcStates/Tests/Cap.cs | 9 +++++++++ IrcStates/Tests/Casemap.cs | 9 +++++++++ IrcStates/Tests/Channel.cs | 9 +++++++++ IrcStates/Tests/Emit.cs | 9 +++++++++ IrcStates/Tests/ISupport.cs | 10 ++++++++++ IrcStates/Tests/Mode.cs | 9 +++++++++ IrcStates/Tests/Motd.cs | 9 +++++++++ IrcStates/Tests/User.cs | 9 +++++++++ IrcStates/Tests/Who.cs | 9 +++++++++ 9 files changed, 82 insertions(+) create mode 100644 IrcStates/Tests/Cap.cs create mode 100644 IrcStates/Tests/Casemap.cs create mode 100644 IrcStates/Tests/Channel.cs create mode 100644 IrcStates/Tests/Emit.cs create mode 100644 IrcStates/Tests/ISupport.cs create mode 100644 IrcStates/Tests/Mode.cs create mode 100644 IrcStates/Tests/Motd.cs create mode 100644 IrcStates/Tests/User.cs create mode 100644 IrcStates/Tests/Who.cs (limited to 'IrcStates/Tests') diff --git a/IrcStates/Tests/Cap.cs b/IrcStates/Tests/Cap.cs new file mode 100644 index 0000000..dcd0e50 --- /dev/null +++ b/IrcStates/Tests/Cap.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class Cap + { + } +} diff --git a/IrcStates/Tests/Casemap.cs b/IrcStates/Tests/Casemap.cs new file mode 100644 index 0000000..fef9a31 --- /dev/null +++ b/IrcStates/Tests/Casemap.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class Casemap + { + } +} diff --git a/IrcStates/Tests/Channel.cs b/IrcStates/Tests/Channel.cs new file mode 100644 index 0000000..0de5f37 --- /dev/null +++ b/IrcStates/Tests/Channel.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class Channel + { + } +} diff --git a/IrcStates/Tests/Emit.cs b/IrcStates/Tests/Emit.cs new file mode 100644 index 0000000..f4495c5 --- /dev/null +++ b/IrcStates/Tests/Emit.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class Emit + { + } +} diff --git a/IrcStates/Tests/ISupport.cs b/IrcStates/Tests/ISupport.cs new file mode 100644 index 0000000..aa6260a --- /dev/null +++ b/IrcStates/Tests/ISupport.cs @@ -0,0 +1,10 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; +// ReSharper disable InconsistentNaming + +namespace IrcStates.Tests +{ + [TestClass] + public class ISupport + { + } +} diff --git a/IrcStates/Tests/Mode.cs b/IrcStates/Tests/Mode.cs new file mode 100644 index 0000000..e7b70f4 --- /dev/null +++ b/IrcStates/Tests/Mode.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class Mode + { + } +} diff --git a/IrcStates/Tests/Motd.cs b/IrcStates/Tests/Motd.cs new file mode 100644 index 0000000..8ca7f07 --- /dev/null +++ b/IrcStates/Tests/Motd.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class Motd + { + } +} diff --git a/IrcStates/Tests/User.cs b/IrcStates/Tests/User.cs new file mode 100644 index 0000000..540d31f --- /dev/null +++ b/IrcStates/Tests/User.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class User + { + } +} diff --git a/IrcStates/Tests/Who.cs b/IrcStates/Tests/Who.cs new file mode 100644 index 0000000..359991c --- /dev/null +++ b/IrcStates/Tests/Who.cs @@ -0,0 +1,9 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace IrcStates.Tests +{ + [TestClass] + public class Who + { + } +} -- cgit 1.4.1