diff options
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); |