diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-25 16:24:04 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-25 16:24:04 -0800 |
commit | 22b1c05a964a5bded9d0d3de0792acbc02aa0b25 (patch) | |
tree | ea23dcf32e008612a70aa8af9c78dc490f1dcb38 /src/DotNetOpenAuth.Test/Configuration/SectionTests.cs | |
parent | 7da4839c2a16e8b7c30e9545941a06853938ccee (diff) | |
download | DotNetOpenAuth-22b1c05a964a5bded9d0d3de0792acbc02aa0b25.zip DotNetOpenAuth-22b1c05a964a5bded9d0d3de0792acbc02aa0b25.tar.gz DotNetOpenAuth-22b1c05a964a5bded9d0d3de0792acbc02aa0b25.tar.bz2 |
Changed all uses of [TestCase] to [Test] to better emulate recommended NUnit patterns.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Configuration/SectionTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Configuration/SectionTests.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs b/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs index ac98205..3f6d4c9 100644 --- a/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs +++ b/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs @@ -13,7 +13,7 @@ namespace DotNetOpenAuth.Test.Configuration { [TestFixture] public class SectionTests { - [TestCase] + [Test] public void UntrustedWebRequest() { var uwr = DotNetOpenAuthSection.Messaging.UntrustedWebRequest; @@ -29,12 +29,12 @@ namespace DotNetOpenAuth.Test.Configuration { Assert.IsTrue(uwr.WhitelistHostsRegex.KeysAsStrings.Contains(".+trusted.+")); } - [TestCase] + [Test] public void OpenIdMaxAuthenticationTime() { Assert.AreEqual(TimeSpan.Parse("00:08:17"), OpenIdElement.Configuration.MaxAuthenticationTime); } - [TestCase] + [Test] public void OpenIdRelyingParty() { var rp = OpenIdElement.Configuration.RelyingParty; Assert.IsNull(rp.ApplicationStore.CustomType); @@ -45,7 +45,7 @@ namespace DotNetOpenAuth.Test.Configuration { Assert.IsFalse(rp.SecuritySettings.RequireSsl); } - [TestCase] + [Test] public void OpenIdProvider() { var op = OpenIdElement.Configuration.Provider; Assert.IsNull(op.ApplicationStore.CustomType); |