Skip to content

Commit d6e0088

Browse files
committed
Refactor test namespaces for improved organization
Reorganized unit test classes into more specific namespaces: - Moved FileProcessingUnitTests to .FileProcessing - Moved RepositorySpecificationUnitTests and TimesheetCosmosRepositoryUnitTests to .Repository - Moved TimesheetApplicationStateUnitTests to .State No logic changes were made; only namespace updates for clarity and structure.
1 parent 81441bc commit d6e0088

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/Azure.Local.Tests/Unit/Timesheets/FileProcessingUnitTests.cs renamed to tests/Azure.Local.Tests/Unit/Timesheets/FileProcessing/FileProcessingUnitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Azure.Local.Infrastructure.Timesheets.FileProcessing.Converters;
44
using System.Globalization;
55

6-
namespace Azure.Local.Tests.Unit.Timesheets
6+
namespace Azure.Local.Tests.Unit.Timesheets.FileProcessing
77
{
88
[ExcludeFromCodeCoverage]
99
public class FileProcessingUnitTests

tests/Azure.Local.Tests/Unit/Timesheets/RepositorySpecificationUnitTests.cs renamed to tests/Azure.Local.Tests/Unit/Timesheets/Repository/RepositorySpecificationUnitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Azure.Local.Infrastructure.Timesheets;
44
using Azure.Local.Tests.Component.Timesheets.Fakes.Repositories;
55

6-
namespace Azure.Local.Tests.Unit.Timesheets
6+
namespace Azure.Local.Tests.Unit.Timesheets.Repository
77
{
88
[ExcludeFromCodeCoverage]
99
public class RepositorySpecificationUnitTests

tests/Azure.Local.Tests/Unit/Timesheets/TimesheetCosmosRepositoryUnitTests.cs renamed to tests/Azure.Local.Tests/Unit/Timesheets/Repository/TimesheetCosmosRepositoryUnitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Azure.Local.Infrastructure.Timesheets;
66
using Azure.Local.Tests.Component.Timesheets.Fakes.Repositories;
77

8-
namespace Azure.Local.Tests.Unit.Timesheets
8+
namespace Azure.Local.Tests.Unit.Timesheets.Repository
99
{
1010
[ExcludeFromCodeCoverage]
1111
public class TimesheetCosmosRepositoryUnitTests

tests/Azure.Local.Tests/Unit/Timesheets/TimesheetApplicationStateUnitTests.cs renamed to tests/Azure.Local.Tests/Unit/Timesheets/State/TimesheetApplicationStateUnitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Azure.Local.Domain.Timesheets;
55
using Azure.Local.Tests.Component.Timesheets.Fakes.Repositories;
66

7-
namespace Azure.Local.Tests.Unit.Timesheets
7+
namespace Azure.Local.Tests.Unit.Timesheets.State
88
{
99
[ExcludeFromCodeCoverage]
1010
public class TimesheetApplicationStateUnitTests

0 commit comments

Comments
 (0)