summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Bischel <tyler.bischel@sendgrid.com>2012-01-11 15:01:06 -0800
committerTyler Bischel <tyler.bischel@sendgrid.com>2012-01-11 15:01:06 -0800
commitbecb9f0680fc32f9624c43f075829669495f1130 (patch)
tree6f8895725010855b551f9abed31aedda45969a0a
parent08b93eb03f542e3c33f09ddb471644d83fd67eed (diff)
downloadsendgrid-csharp-becb9f0680fc32f9624c43f075829669495f1130.zip
sendgrid-csharp-becb9f0680fc32f9624c43f075829669495f1130.tar.gz
sendgrid-csharp-becb9f0680fc32f9624c43f075829669495f1130.tar.bz2
only tests the basic serialization, to make sure it works correctly...
-rwxr-xr-xSendGrid/Tests/TestJsonUtils.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/SendGrid/Tests/TestJsonUtils.cs b/SendGrid/Tests/TestJsonUtils.cs
index b06e153..b8f4aae 100755
--- a/SendGrid/Tests/TestJsonUtils.cs
+++ b/SendGrid/Tests/TestJsonUtils.cs
@@ -12,11 +12,6 @@ namespace Tests
{
Assert.AreEqual("1", JsonUtils.Serialize(1));
Assert.AreEqual("\"\\\"foo\\\"\"", JsonUtils.Serialize("\"foo\""));
-
- var arg = Encoding.UTF8.GetString(Encoding.ASCII.GetBytes("добры дзень"));
- var result = JsonUtils.Serialize(arg);
- System.Console.WriteLine(arg + " => " + result);
- Assert.AreEqual("", result);
}
}
}