summaryrefslogtreecommitdiffstats
path: root/SendGrid/Tests/TestJsonUtils.cs
diff options
context:
space:
mode:
authorbrandonmwest <brawest@gmail.com>2014-02-07 11:30:42 -0700
committerbrandonmwest <brawest@gmail.com>2014-02-07 11:30:42 -0700
commite4a57fc33b188074613b3296f0ec3a614cce9163 (patch)
treeb95b11802bc82fd92c81a3766997c19076508622 /SendGrid/Tests/TestJsonUtils.cs
parent96c7b116a9db2d184f07e659b837145ebe10765d (diff)
parent4eeb055fef43e79d623464f6b3b119943949a98c (diff)
downloadsendgrid-csharp-e4a57fc33b188074613b3296f0ec3a614cce9163.zip
sendgrid-csharp-e4a57fc33b188074613b3296f0ec3a614cce9163.tar.gz
sendgrid-csharp-e4a57fc33b188074613b3296f0ec3a614cce9163.tar.bz2
Merge pull request #40 from sendgrid/deprecate_smtp
Deprecate smtp
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\""));
- }
- }
-}