Skip to content

Commit

Permalink
chore: split up tests classes to reduce length
Browse files Browse the repository at this point in the history
  • Loading branch information
jvandaal committed Jan 31, 2024
1 parent 65b309f commit 5046cda
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace BuildingRegistry.Tests.ProjectionTests.Integration
{
public partial class BuildingUnitVersionProjectionsTests
{

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace BuildingRegistry.Tests.ProjectionTests.Integration
{
public partial class BuildingUnitVersionProjectionsTests
{

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
using Xunit;
using IAddresses = Projections.Integration.IAddresses;

public class BuildingUnitVersionProjectionsTests : IntegrationProjectionTest<BuildingUnitVersionProjections>
public partial class BuildingUnitVersionProjectionsTests : IntegrationProjectionTest<BuildingUnitVersionProjections>
{
private const string BuildingNamespace = "https://data.vlaanderen.be/id/gebouw";
private const string BuildingUnitNamespace = "https://data.vlaanderen.be/id/gebouweenheid";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace BuildingRegistry.Tests.ProjectionTests.Integration
{
public partial class BuildingVersionProjectionsTests
{

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
using Tests.Legacy.Autofixture;
using Xunit;

public class BuildingVersionProjectionsTests : IntegrationProjectionTest<BuildingVersionProjections>
public partial class BuildingVersionProjectionsTests : IntegrationProjectionTest<BuildingVersionProjections>
{
private const string BuildingNamespace = "https://data.vlaanderen.be/id/gebouw";
private const string BuildingUnitNamespace = "https://data.vlaanderen.be/id/gebouweenheid";
Expand Down

0 comments on commit 5046cda

Please sign in to comment.