Skip to content

Commit a389dc6

Browse files
author
Robert Stam
committed
Merged the DriverOnlineTests and DriverUnitTests projects into a single project called DriverUnitTests. Experience has shown that there was no benefit to having the offline tests separate. If anything it added extra steps to testing because we would invariably want to run both sets of tests.
1 parent d53ff25 commit a389dc6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+235
-416
lines changed

CSharpDriver-2010.sln

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BsonUnitTests", "BsonUnitTe
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Driver", "Driver\Driver.csproj", "{AE5166CD-76B0-4911-BD80-CED9521F37A1}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DriverUnitTests", "DriverUnitTests\DriverUnitTests.csproj", "{DBF3A41B-D0EE-4CA5-ADA6-EB1A4DE903E1}"
11-
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DriverOnlineTests", "DriverOnlineTests\DriverOnlineTests.csproj", "{FBBF0D71-107F-49C4-8858-B3A4DC24AA33}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DriverUnitTests", "DriverUnitTests\DriverUnitTests.csproj", "{FBBF0D71-107F-49C4-8858-B3A4DC24AA33}"
1311
EndProject
1412
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{00502D63-7789-410D-B6BE-5F16327FF810}"
1513
ProjectSection(SolutionItems) = preProject
@@ -39,10 +37,6 @@ Global
3937
{AE5166CD-76B0-4911-BD80-CED9521F37A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
4038
{AE5166CD-76B0-4911-BD80-CED9521F37A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
4139
{AE5166CD-76B0-4911-BD80-CED9521F37A1}.Release|Any CPU.Build.0 = Release|Any CPU
42-
{DBF3A41B-D0EE-4CA5-ADA6-EB1A4DE903E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43-
{DBF3A41B-D0EE-4CA5-ADA6-EB1A4DE903E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
44-
{DBF3A41B-D0EE-4CA5-ADA6-EB1A4DE903E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
45-
{DBF3A41B-D0EE-4CA5-ADA6-EB1A4DE903E1}.Release|Any CPU.Build.0 = Release|Any CPU
4640
{FBBF0D71-107F-49C4-8858-B3A4DC24AA33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4741
{FBBF0D71-107F-49C4-8858-B3A4DC24AA33}.Debug|Any CPU.Build.0 = Debug|Any CPU
4842
{FBBF0D71-107F-49C4-8858-B3A4DC24AA33}.Release|Any CPU.ActiveCfg = Release|Any CPU

DriverOnlineTests/Core/MongoServerTests.cs

Lines changed: 0 additions & 137 deletions
This file was deleted.

DriverOnlineTests/DriverOnlineTests.csproj

Lines changed: 0 additions & 176 deletions
This file was deleted.

DriverOnlineTests/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 29 deletions
This file was deleted.

DriverOnlineTests/Configuration.cs renamed to DriverUnitTests/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using MongoDB.Driver;
2424
using MongoDB.Driver.Builders;
2525

26-
namespace MongoDB.DriverOnlineTests
26+
namespace MongoDB.DriverUnitTests
2727
{
2828
/// <summary>
2929
/// A static class to handle online test configuration.

DriverOnlineTests/Core/CommandResults/CollectionStatsResultTests.cs renamed to DriverUnitTests/Core/CommandResults/CollectionStatsResultTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using MongoDB.Bson.Serialization;
2424
using MongoDB.Driver;
2525

26-
namespace MongoDB.DriverOnlineTests.CommandResults
26+
namespace MongoDB.DriverUnitTests.CommandResults
2727
{
2828
[TestFixture]
2929
public class CollectionStatsResultTests

DriverOnlineTests/Core/CommandResults/CommandResultTests.cs renamed to DriverUnitTests/Core/CommandResults/CommandResultTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using MongoDB.Bson.Serialization;
2424
using MongoDB.Driver;
2525

26-
namespace MongoDB.DriverOnlineTests.CommandResults
26+
namespace MongoDB.DriverUnitTests.CommandResults
2727
{
2828
[TestFixture]
2929
public class CommandResultTests

0 commit comments

Comments
 (0)