summaryrefslogtreecommitdiffstats
path: root/SendGrid/Tests/TestHeader.cs
diff options
context:
space:
mode:
authorcjbuchmann <cjbuchmann@gmail.com>2012-01-06 16:21:21 -0800
committercjbuchmann <cjbuchmann@gmail.com>2012-01-06 16:21:21 -0800
commit5d12231da2ac87f16aa7600da8d1cd211056de06 (patch)
treeeb3c9fc7975db3d27a98545493a9a0ff10827d6c /SendGrid/Tests/TestHeader.cs
parentb73d16a02ca9f2b5c88b8c81ed8553c505fe758b (diff)
parentf822b00f05cf0a9fda3b2425c8f68879c2a4942e (diff)
downloadsendgrid-csharp-5d12231da2ac87f16aa7600da8d1cd211056de06.zip
sendgrid-csharp-5d12231da2ac87f16aa7600da8d1cd211056de06.tar.gz
sendgrid-csharp-5d12231da2ac87f16aa7600da8d1cd211056de06.tar.bz2
Merge pull request #1 from sendgrid/us1882
Us1882
Diffstat (limited to 'SendGrid/Tests/TestHeader.cs')
-rwxr-xr-xSendGrid/Tests/TestHeader.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/SendGrid/Tests/TestHeader.cs b/SendGrid/Tests/TestHeader.cs
new file mode 100755
index 0000000..323e394
--- /dev/null
+++ b/SendGrid/Tests/TestHeader.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using Moq;
+using NUnit.Framework;
+using SendGrid;
+
+namespace Tests
+{
+ [TestFixture]
+ public class TestHeader
+ {
+ [Test]
+ public void TestAddTo()
+ {
+ var foo = new Mock<IHeader>();
+ foo.Setup(m => m.Enable("foo"));
+
+ var bar = new SendGrid.SendGrid(foo.Object);
+ Assert.AreEqual(1, 2, "I suck");
+
+ }
+ }
+}