Skip to content

Commit

Permalink
refactor: extract shoudly to global using
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilbaczek authored and kamilbaczek committed Feb 7, 2025
1 parent 99997cd commit 9865e7e
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

using Common;
using Fitnet.Common.BusinessRulesEngine;
using Shouldly;

public class BusinessRulesArchitectureTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
namespace EvolutionaryArchitecture.Fitnet.ArchitectureTests;

using Common;
using Shouldly;

public sealed class ContractsArchitectureTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
namespace EvolutionaryArchitecture.Fitnet.ArchitectureTests.Conventions;

using Common;
using Shouldly;

public sealed class EndpointsConventionsTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
namespace EvolutionaryArchitecture.Fitnet.ArchitectureTests.Conventions;

using Common;
using Shouldly;

public sealed class InterfacesConventionsTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
global using System.Reflection;
global using EvolutionaryArchitecture.Fitnet.ArchitectureTests.Common.Predicates;
global using NetArchTest.Rules;
global using Shouldly;
global using Xunit;
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
namespace EvolutionaryArchitecture.Fitnet.ArchitectureTests;

using Common;
using Shouldly;

public sealed class OffersArchitectureTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
namespace EvolutionaryArchitecture.Fitnet.ArchitectureTests;

using Common;
using Shouldly;

public sealed class PassesArchitectureTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
namespace EvolutionaryArchitecture.Fitnet.ArchitectureTests;

using Common;
using Shouldly;

public sealed class ReportsArchitectureTests
{
Expand Down

0 comments on commit 9865e7e

Please sign in to comment.