Skip to content

Commit 0438307

Browse files
committed
rename "Gerrit.Tests" (old project name from main repo) to "GitExtensions.GerritPlugin.Tests"
1 parent 546533a commit 0438307

File tree

9 files changed

+30
-51
lines changed

9 files changed

+30
-51
lines changed
File renamed without changes.

GitExtensions.GerritPlugin.sln

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.29709.97
55
MinimumVisualStudioVersion = 15.0.26124.0
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitExtensions.GerritPlugin", "src\GitExtensions.GerritPlugin\GitExtensions.GerritPlugin.csproj", "{58C09A62-E18E-4B76-AADB-D0B176C5424E}"
77
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitExtensions.GerritPlugin.Tests", "UnitTests\GitExtensions.GerritPlugin.Tests\GitExtensions.GerritPlugin.Tests.csproj", "{847B0590-A76F-4B90-B797-10165DD6705F}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -27,6 +29,18 @@ Global
2729
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|x64.Build.0 = Release|Any CPU
2830
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|x86.ActiveCfg = Release|Any CPU
2931
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|x86.Build.0 = Release|Any CPU
32+
{847B0590-A76F-4B90-B797-10165DD6705F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{847B0590-A76F-4B90-B797-10165DD6705F}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{847B0590-A76F-4B90-B797-10165DD6705F}.Debug|x64.ActiveCfg = Debug|Any CPU
35+
{847B0590-A76F-4B90-B797-10165DD6705F}.Debug|x64.Build.0 = Debug|Any CPU
36+
{847B0590-A76F-4B90-B797-10165DD6705F}.Debug|x86.ActiveCfg = Debug|Any CPU
37+
{847B0590-A76F-4B90-B797-10165DD6705F}.Debug|x86.Build.0 = Debug|Any CPU
38+
{847B0590-A76F-4B90-B797-10165DD6705F}.Release|Any CPU.ActiveCfg = Release|Any CPU
39+
{847B0590-A76F-4B90-B797-10165DD6705F}.Release|Any CPU.Build.0 = Release|Any CPU
40+
{847B0590-A76F-4B90-B797-10165DD6705F}.Release|x64.ActiveCfg = Release|Any CPU
41+
{847B0590-A76F-4B90-B797-10165DD6705F}.Release|x64.Build.0 = Release|Any CPU
42+
{847B0590-A76F-4B90-B797-10165DD6705F}.Release|x86.ActiveCfg = Release|Any CPU
43+
{847B0590-A76F-4B90-B797-10165DD6705F}.Release|x86.Build.0 = Release|Any CPU
3044
EndGlobalSection
3145
GlobalSection(SolutionProperties) = preSolution
3246
HideSolutionNode = FALSE

UnitTests/GitExtensions.GerritPlugin.Tests/Gerrit.Tests.csproj

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<PackageReference Include="NUnit" Version="3.12.0" />
4+
</ItemGroup>
5+
6+
<ItemGroup>
7+
<ProjectReference Include="..\..\src\GitExtensions.GerritPlugin\GitExtensions.GerritPlugin.csproj" />
8+
</ItemGroup>
9+
</Project>
Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,2 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
3-
using CommonTestUtils;
4-
5-
// General Information about an assembly is controlled through the following
6-
// set of attributes. Change these attribute values to modify the information
7-
// associated with an assembly.
8-
[assembly: AssemblyTitle("GerritTests")]
9-
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("GerritTests")]
13-
[assembly: AssemblyCopyright("Copyright © 2019")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
16-
17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
20-
[assembly: ComVisible(false)]
21-
22-
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("2f8f55f7-c82f-44fc-ab52-9d0c692996fc")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
37-
38-
[assembly: TestAppSettings]

UnitTests/GitExtensions.GerritPlugin.Tests/Server/CommandBuilderWithDraftSupportTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using Gerrit.Server;
6+
using GitExtensions.GerritPlugin.Server;
77
using NUnit.Framework;
88

9-
namespace GerritTests.Server
9+
namespace GitExtensions.GerritPlugin.Tests.Server
1010
{
1111
public static class CommandBuilderWithDraftSupportTests
1212
{

UnitTests/GitExtensions.GerritPlugin.Tests/Server/CommandBuilderWithPrivateSupportTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using Gerrit.Server;
6+
using GitExtensions.GerritPlugin.Server;
77
using NUnit.Framework;
88

9-
namespace GerritTests.Server
9+
namespace GitExtensions.GerritPlugin.Tests.Server
1010
{
1111
public static class CommandBuilderWithPrivateSupportTests
1212
{

UnitTests/GitExtensions.GerritPlugin.Tests/Server/GerritCapabilityTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Linq;
2-
using Gerrit.Server;
2+
using GitExtensions.GerritPlugin.Server;
33
using NUnit.Framework;
44

5-
namespace GerritTests.Server
5+
namespace GitExtensions.GerritPlugin.Tests.Server
66
{
77
public static class GerritCapabilityTests
88
{

src/GitExtensions.GerritPlugin/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
using System.Runtime.CompilerServices;
33

44
[assembly: AssemblyDescription("GitExtensions plugin for integration with Gerrit")]
5-
[assembly: InternalsVisibleTo("Gerrit.Tests")]
5+
[assembly: InternalsVisibleTo("GitExtensions.GerritPlugin.Tests")]

0 commit comments

Comments
 (0)