summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth.Test
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOAuth.Test')
-rw-r--r--src/DotNetOAuth.Test/DotNetOAuth.Test.csproj5
-rw-r--r--src/DotNetOAuth.Test/ServiceProviderTest.cs6
2 files changed, 7 insertions, 4 deletions
diff --git a/src/DotNetOAuth.Test/DotNetOAuth.Test.csproj b/src/DotNetOAuth.Test/DotNetOAuth.Test.csproj
index d136b2c..efb1209 100644
--- a/src/DotNetOAuth.Test/DotNetOAuth.Test.csproj
+++ b/src/DotNetOAuth.Test/DotNetOAuth.Test.csproj
@@ -2,7 +2,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.21022</ProductVersion>
+ <ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{4376ECC9-C346-4A99-B13C-FA93C0FBD2C9}</ProjectGuid>
<OutputType>Library</OutputType>
@@ -70,6 +70,9 @@
<Name>DotNetOAuth</Name>
</ProjectReference>
</ItemGroup>
+ <ItemGroup>
+ <EmbeddedResource Include="Logging.config" />
+ </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\..\tools\DotNetOAuth.Versioning.targets" />
</Project> \ No newline at end of file
diff --git a/src/DotNetOAuth.Test/ServiceProviderTest.cs b/src/DotNetOAuth.Test/ServiceProviderTest.cs
index 56ef619..38836f4 100644
--- a/src/DotNetOAuth.Test/ServiceProviderTest.cs
+++ b/src/DotNetOAuth.Test/ServiceProviderTest.cs
@@ -2,12 +2,12 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace DotNetOAuth.Test {
- [TestClass()]
- public class ServiceProviderTest {
+ [TestClass]
+ public class ServiceProviderTest : TestBase {
/// <summary>
/// A test for UserAuthorizationUri
/// </summary>
- [TestMethod()]
+ [TestMethod]
public void UserAuthorizationUriTest() {
ServiceProvider target = new ServiceProvider();
Uri expected = new Uri("http://localhost/authorization");