diff options
author | Brandon West <brawest@gmail.com> | 2014-01-06 14:29:57 -0700 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-01-06 14:29:57 -0700 |
commit | c5f9ddb7b135013547c03ce576e6443a72beef01 (patch) | |
tree | 72126eca67ccd3233d8250b24c07f727220523f1 /SendGrid/Tests/TestJsonUtils.cs | |
parent | 96c7b116a9db2d184f07e659b837145ebe10765d (diff) | |
download | sendgrid-csharp-c5f9ddb7b135013547c03ce576e6443a72beef01.zip sendgrid-csharp-c5f9ddb7b135013547c03ce576e6443a72beef01.tar.gz sendgrid-csharp-c5f9ddb7b135013547c03ce576e6443a72beef01.tar.bz2 |
add dependency on Smtpapi library, remove SMTP functionality
Diffstat (limited to 'SendGrid/Tests/TestJsonUtils.cs')
-rwxr-xr-x | SendGrid/Tests/TestJsonUtils.cs | 17 |
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\""));
- }
- }
-}
|