summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-04 20:58:04 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-04 20:58:04 -0700
commit2fe0a3d03eac3d4a238347f023bb63fd579d1060 (patch)
treea8fb3dbae481a90349845fcaa396cb903a4249ed /src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
parent14f6007a7d0de2d3b1bfc2eb3cd75296924aa456 (diff)
downloadDotNetOpenAuth-2fe0a3d03eac3d4a238347f023bb63fd579d1060.zip
DotNetOpenAuth-2fe0a3d03eac3d4a238347f023bb63fd579d1060.tar.gz
DotNetOpenAuth-2fe0a3d03eac3d4a238347f023bb63fd579d1060.tar.bz2
Replaced a bunch of TestCase attribute usages with simply Test.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs b/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
index 8e7ebf8..cb3bd0c 100644
--- a/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
+++ b/src/DotNetOpenAuth.Test/Messaging/Reflection/ValueMappingTests.cs
@@ -11,12 +11,12 @@ namespace DotNetOpenAuth.Test.Messaging.Reflection {
[TestFixture]
public class ValueMappingTests {
- [TestCase, ExpectedException(typeof(ArgumentNullException))]
+ [Test, ExpectedException(typeof(ArgumentNullException))]
public void CtorNullToString() {
new ValueMapping(null, null, str => new object());
}
- [TestCase, ExpectedException(typeof(ArgumentNullException))]
+ [Test, ExpectedException(typeof(ArgumentNullException))]
public void CtorNullToObject() {
new ValueMapping(obj => obj.ToString(), null, null);
}