diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-11 15:01:06 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-11 15:01:06 -0800 |
commit | b9e0d64022a6ddc98d34bae7b3effc1692c45c5a (patch) | |
tree | 35f18ab7fac5a6b96916563e37e73528a1b8ba64 /SendGrid/Tests/TestJsonUtils.cs | |
parent | be03fdd1a91f7701670b0803c3120ad494228e76 (diff) | |
download | sendgrid-csharp-b9e0d64022a6ddc98d34bae7b3effc1692c45c5a.zip sendgrid-csharp-b9e0d64022a6ddc98d34bae7b3effc1692c45c5a.tar.gz sendgrid-csharp-b9e0d64022a6ddc98d34bae7b3effc1692c45c5a.tar.bz2 |
only tests the basic serialization, to make sure it works correctly...
Diffstat (limited to 'SendGrid/Tests/TestJsonUtils.cs')
-rwxr-xr-x | SendGrid/Tests/TestJsonUtils.cs | 5 |
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);
}
}
}
|