diff options
author | CJ Buchmann <cj.buchmann@sendgrid.com> | 2012-01-13 16:42:38 -0800 |
---|---|---|
committer | CJ Buchmann <cj.buchmann@sendgrid.com> | 2012-01-13 16:42:38 -0800 |
commit | cc7e8b7a0aae5381899ea1ea4c91e467f170348a (patch) | |
tree | d0062795c0cf8dc2f1abf2d0d8dc226a96809be7 /SendGrid/Tests/Transport/TestREST.cs | |
parent | 2cc3f7ecf61374d9b88d41290fe29c04a3849d6c (diff) | |
parent | ba5a61b85f19027b240588216a6fc3d418214e04 (diff) | |
download | sendgrid-csharp-cc7e8b7a0aae5381899ea1ea4c91e467f170348a.zip sendgrid-csharp-cc7e8b7a0aae5381899ea1ea4c91e467f170348a.tar.gz sendgrid-csharp-cc7e8b7a0aae5381899ea1ea4c91e467f170348a.tar.bz2 |
Merge branch 'us1882' of github.com:sendgrid/sendgrid-csharp
Diffstat (limited to 'SendGrid/Tests/Transport/TestREST.cs')
-rwxr-xr-x | SendGrid/Tests/Transport/TestREST.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/SendGrid/Tests/Transport/TestREST.cs b/SendGrid/Tests/Transport/TestREST.cs new file mode 100755 index 0000000..ccbab48 --- /dev/null +++ b/SendGrid/Tests/Transport/TestREST.cs @@ -0,0 +1,24 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using NUnit.Framework;
+
+namespace Tests.Transport
+{
+ [TestFixture]
+ class TestREST
+ {
+ [Test]
+ public void TestDeliver()
+ {
+
+ }
+
+ [Test]
+ public void TestConstructor()
+ {
+
+ }
+ }
+}
|