diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-16 16:06:27 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-16 16:06:27 -0800 |
commit | d775a91e7d7a054725ba8fbbeed307da89fb9d74 (patch) | |
tree | d930841de5406a87c6cfddfa50b0ce3fe6a86bb8 /SendGrid/Tests/TestUtils.cs | |
parent | 532b9af57860e0dddcafb9d458dddc66b9add7fc (diff) | |
download | sendgrid-csharp-d775a91e7d7a054725ba8fbbeed307da89fb9d74.zip sendgrid-csharp-d775a91e7d7a054725ba8fbbeed307da89fb9d74.tar.gz sendgrid-csharp-d775a91e7d7a054725ba8fbbeed307da89fb9d74.tar.bz2 |
refactoring to add coverage
Diffstat (limited to 'SendGrid/Tests/TestUtils.cs')
-rwxr-xr-x | SendGrid/Tests/TestUtils.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/SendGrid/Tests/TestUtils.cs b/SendGrid/Tests/TestUtils.cs new file mode 100755 index 0000000..dda9d19 --- /dev/null +++ b/SendGrid/Tests/TestUtils.cs @@ -0,0 +1,18 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using NUnit.Framework;
+
+namespace Tests
+{
+ [TestFixture]
+ public class TestUtils
+ {
+ [Test]
+ public void Test()
+ {
+
+ }
+ }
+}
|