summaryrefslogtreecommitdiffstats
path: root/SendGrid/Tests/TestJsonUtils.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SendGrid/Tests/TestJsonUtils.cs')
-rwxr-xr-xSendGrid/Tests/TestJsonUtils.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/SendGrid/Tests/TestJsonUtils.cs b/SendGrid/Tests/TestJsonUtils.cs
deleted file mode 100755
index fee990d..0000000
--- a/SendGrid/Tests/TestJsonUtils.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System.Text;
-using NUnit.Framework;
-using SendGridMail;
-
-namespace Tests
-{
- [TestFixture]
- public class TestJsonUtils
- {
- [Test]
- public void TestSerialize()
- {
- Assert.AreEqual("1", Utils.Serialize(1));
- Assert.AreEqual("\"\\\"foo\\\"\"", Utils.Serialize("\"foo\""));
- }
- }
-}