Skip to content

Commit 2fdfc7e

Browse files
committed
Renaming integration test classes to be consistent
1 parent d46e745 commit 2fdfc7e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

GitVersionCore.Tests/GitVersionCore.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@
8383
<Compile Include="GitVersionContextTests.cs" />
8484
<Compile Include="Helpers\DirectoryHelper.cs" />
8585
<Compile Include="IntegrationTests\PullRequestScenarios.cs" />
86-
<Compile Include="IntegrationTests\RemoteRepositoryTests.cs" />
86+
<Compile Include="IntegrationTests\RemoteRepositoryScenarios.cs" />
8787
<Compile Include="IntegrationTests\DevelopScenarios.cs" />
88-
<Compile Include="IntegrationTests\FeatureBranchTests.cs" />
88+
<Compile Include="IntegrationTests\FeatureBranchScenarios.cs" />
8989
<Compile Include="IntegrationTests\SupportBranchScenarios.cs" />
9090
<Compile Include="IntegrationTests\HotfixBranchScenarios.cs" />
91-
<Compile Include="IntegrationTests\ReleaseBranchTests.cs" />
91+
<Compile Include="IntegrationTests\ReleaseBranchScenarios.cs" />
9292
<Compile Include="IntegrationTests\SwitchingToGitFlowScenarios.cs" />
9393
<Compile Include="IntegrationTests\WikiScenarios.cs" />
94-
<Compile Include="IntegrationTests\OtherBranchTests.cs" />
94+
<Compile Include="IntegrationTests\OtherBranchScenarios.cs" />
9595
<Compile Include="Helpers\Constants.cs" />
9696
<Compile Include="InformationalVersionBuilderTests.cs" />
9797
<Compile Include="JsonVersionBuilderTests.cs" />
@@ -112,7 +112,7 @@
112112
<Compile Include="Fixtures\EmptyRepositoryFixture.cs" />
113113
<Compile Include="Helpers\GitTestExtensions.cs" />
114114
<Compile Include="Helpers\PathHelper.cs" />
115-
<Compile Include="IntegrationTests\MasterTests.cs" />
115+
<Compile Include="IntegrationTests\MasterScenarios.cs" />
116116
<Compile Include="ApprovalTestsConfig.cs" />
117117
<Compile Include="Fixtures\RepositoryFixtureBase.cs" />
118118
<Compile Include="SemanticVersionTests.cs" />

GitVersionCore.Tests/IntegrationTests/FeatureBranchTests.cs renamed to GitVersionCore.Tests/IntegrationTests/FeatureBranchScenarios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using NUnit.Framework;
44

55
[TestFixture]
6-
public class FeatureBranchTests
6+
public class FeatureBranchScenarios
77
{
88
[Test]
99
public void ShouldNotUseNumberInFeatureBranchAsPreReleaseNumberOffDevelop()

GitVersionCore.Tests/IntegrationTests/MasterTests.cs renamed to GitVersionCore.Tests/IntegrationTests/MasterScenarios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using NUnit.Framework;
44

55
[TestFixture]
6-
public class MasterTests
6+
public class MasterScenarios
77
{
88
[Test]
99
public void GivenARepositoryWithCommitsButNoTags_VersionShouldBe_0_1()

GitVersionCore.Tests/IntegrationTests/OtherBranchTests.cs renamed to GitVersionCore.Tests/IntegrationTests/OtherBranchScenarios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using NUnit.Framework;
44

55
[TestFixture]
6-
public class OtherBranchTests
6+
public class OtherBranchScenarios
77
{
88
[Test]
99
public void CanTakeVersionFromReleaseBranch()

GitVersionCore.Tests/IntegrationTests/ReleaseBranchTests.cs renamed to GitVersionCore.Tests/IntegrationTests/ReleaseBranchScenarios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using NUnit.Framework;
44

55
[TestFixture]
6-
public class GitFlowReleaseBranchTests
6+
public class ReleaseBranchScenarios
77
{
88
[Test]
99
public void CanTakeVersionFromReleaseBranch()

GitVersionCore.Tests/IntegrationTests/RemoteRepositoryTests.cs renamed to GitVersionCore.Tests/IntegrationTests/RemoteRepositoryScenarios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using NUnit.Framework;
55

66
[TestFixture]
7-
public class RemoteRepositoryTests
7+
public class RemoteRepositoryScenarios
88
{
99
[Test]
1010
public void GivenARemoteGitRepositoryWithCommits_ThenClonedLocalShouldMatchRemoteVersion()

0 commit comments

Comments
 (0)