diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-20 22:40:32 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-20 22:40:32 -0800 |
commit | c990d2f6bf34b8a6da216843dd90d8ee49d6fbbb (patch) | |
tree | 668bc63af44f5b696183cff001e7a8cebe69058e /src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseSnapshotTests.cs | |
parent | 2c88c7729957f7113627a4b9942b4c62c8d4f860 (diff) | |
download | DotNetOpenAuth-c990d2f6bf34b8a6da216843dd90d8ee49d6fbbb.zip DotNetOpenAuth-c990d2f6bf34b8a6da216843dd90d8ee49d6fbbb.tar.gz DotNetOpenAuth-c990d2f6bf34b8a6da216843dd90d8ee49d6fbbb.tar.bz2 |
Fixed an MSTest-based unit test to be based on NUnit instead.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseSnapshotTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseSnapshotTests.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseSnapshotTests.cs b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseSnapshotTests.cs index e069c44..0bb994c 100644 --- a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseSnapshotTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseSnapshotTests.cs @@ -12,16 +12,16 @@ namespace DotNetOpenAuth.Test.OpenId.RelyingParty { using DotNetOpenAuth.OpenId; using DotNetOpenAuth.OpenId.Messages; using DotNetOpenAuth.OpenId.RelyingParty; - using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; + using NUnit.Framework; - [TestClass] + [TestFixture] public class PositiveAuthenticationResponseSnapshotTests : OpenIdTestBase { /// <summary> /// Verifies that the PositiveAuthenticationResponseSnapshot is serializable, /// as required by the <see cref="OpenIdRelyingPartyAjaxControlBase"/> class. /// </summary> - [TestMethod] + [Test] public void Serializable() { var response = new Mock<IAuthenticationResponse>(MockBehavior.Strict); response.Setup(o => o.ClaimedIdentifier).Returns(VanityUri); |