summaryrefslogtreecommitdiffstats
path: root/SendGrid/UnitTest/UnitTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SendGrid/UnitTest/UnitTest.cs')
-rw-r--r--SendGrid/UnitTest/UnitTest.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/SendGrid/UnitTest/UnitTest.cs b/SendGrid/UnitTest/UnitTest.cs
index 0b5e2bd..4f6e617 100644
--- a/SendGrid/UnitTest/UnitTest.cs
+++ b/SendGrid/UnitTest/UnitTest.cs
@@ -1,13 +1,13 @@
using System;
using System.Net;
using System.Net.Http;
-using Microsoft.VisualStudio.TestTools.UnitTesting;
+using NUnit.Framework;
using Newtonsoft.Json.Linq;
using SendGrid;
namespace UnitTest
{
- [TestClass]
+ [TestFixture]
public class UnitTest
{
static string _baseUri = "https://api.sendgrid.com/";
@@ -15,7 +15,7 @@ namespace UnitTest
public Client client = new Client(_apiKey, _baseUri);
private static string _api_key_id = "";
- [TestMethod]
+ [Test]
public void ApiKeysIntegrationTest()
{
TestGet();