Skip to content

Commit

Permalink
Reorganizing factory test files.
Browse files Browse the repository at this point in the history
  • Loading branch information
DyegoMaas committed Jun 26, 2021
1 parent 88ec91b commit 93fc041
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using FluentAssertions;
using ForeverFactory.Behaviors;
using ForeverFactory.Builders;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests.BehaviorsSelection
Expand Down
2 changes: 1 addition & 1 deletion tests/ForeverFactory.Tests/Core/GeneratorNodeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using ForeverFactory.Core.Transforms;
using ForeverFactory.Core.Transforms.Guards;
using ForeverFactory.Core.Transforms.Guards.Specifications;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests.Core
Expand Down
2 changes: 1 addition & 1 deletion tests/ForeverFactory.Tests/Core/ObjectFactoryTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using FluentAssertions;
using ForeverFactory.Core;
using ForeverFactory.Core.Transforms;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests.Core
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using FluentAssertions;
using ForeverFactory.Core.Transforms;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests.Core.Transforms
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using FluentAssertions;
using ForeverFactory.Core.Transforms;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests.Core.Transforms
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
using System.Collections.Generic;
using FluentAssertions;
using FluentAssertions.Extensions;
using ForeverFactory.Builders;
using ForeverFactory.Core.Transforms;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using FluentAssertions;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests
namespace ForeverFactory.Tests.Factories
{
public class MagicFactoryTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using FluentAssertions;
using ForeverFactory.Behaviors;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests.CustomizedFactories
namespace ForeverFactory.Tests.Factories.CustomizedFactories
{
public class CustomizedFactoryTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ForeverFactory.Tests.CustomizedFactories.ExampleFactories
namespace ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories
{
public class PersonFactory : MagicFactory<Person>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ForeverFactory.Tests.CustomizedFactories.ExampleFactories
namespace ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories
{
public class ProductFactory : MagicFactory<Product>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using FluentAssertions;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests
namespace ForeverFactory.Tests.Factories
{
public class MultipleInstanceBuildingTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
using System.Linq;
using FluentAssertions;
using ForeverFactory.Builders;
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
using Xunit;

namespace ForeverFactory.Tests
namespace ForeverFactory.Tests.Factories
{
public class NavigationBetweenInterfacesTests
{
Expand Down

0 comments on commit 93fc041

Please sign in to comment.