Skip to content

Commit 93fc041

Browse files
committed
Reorganizing factory test files.
1 parent 88ec91b commit 93fc041

File tree

11 files changed

+16
-22
lines changed

11 files changed

+16
-22
lines changed

tests/ForeverFactory.Tests/BehaviorsSelection/NotFillPropertiesBehaviorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using FluentAssertions;
33
using ForeverFactory.Behaviors;
44
using ForeverFactory.Builders;
5-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
5+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
66
using Xunit;
77

88
namespace ForeverFactory.Tests.BehaviorsSelection

tests/ForeverFactory.Tests/Core/GeneratorNodeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using ForeverFactory.Core.Transforms;
55
using ForeverFactory.Core.Transforms.Guards;
66
using ForeverFactory.Core.Transforms.Guards.Specifications;
7-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
7+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
88
using Xunit;
99

1010
namespace ForeverFactory.Tests.Core

tests/ForeverFactory.Tests/Core/ObjectFactoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using FluentAssertions;
22
using ForeverFactory.Core;
33
using ForeverFactory.Core.Transforms;
4-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
4+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
55
using Xunit;
66

77
namespace ForeverFactory.Tests.Core

tests/ForeverFactory.Tests/Core/Transforms/FuncTransformTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using FluentAssertions;
22
using ForeverFactory.Core.Transforms;
3-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
3+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
44
using Xunit;
55

66
namespace ForeverFactory.Tests.Core.Transforms

tests/ForeverFactory.Tests/Core/Transforms/ReflectedTransformTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using FluentAssertions;
22
using ForeverFactory.Core.Transforms;
3-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
3+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
44
using Xunit;
55

66
namespace ForeverFactory.Tests.Core.Transforms

tests/ForeverFactory.Tests/MagicFactoryTests.cs renamed to tests/ForeverFactory.Tests/Factories/BasicActionsTests.cs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
using System.Collections.Generic;
2-
using FluentAssertions;
3-
using FluentAssertions.Extensions;
4-
using ForeverFactory.Builders;
5-
using ForeverFactory.Core.Transforms;
6-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
1+
using FluentAssertions;
2+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
73
using Xunit;
84

9-
namespace ForeverFactory.Tests
5+
namespace ForeverFactory.Tests.Factories
106
{
117
public class MagicFactoryTests
128
{

tests/ForeverFactory.Tests/CustomizedFactories/CustomizedFactoryTests.cs renamed to tests/ForeverFactory.Tests/Factories/CustomizedFactories/CustomizedFactoryTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using FluentAssertions;
2-
using ForeverFactory.Behaviors;
3-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
2+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
43
using Xunit;
54

6-
namespace ForeverFactory.Tests.CustomizedFactories
5+
namespace ForeverFactory.Tests.Factories.CustomizedFactories
76
{
87
public class CustomizedFactoryTests
98
{

tests/ForeverFactory.Tests/CustomizedFactories/ExampleFactories/PersonFactory.cs renamed to tests/ForeverFactory.Tests/Factories/CustomizedFactories/ExampleFactories/PersonFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ForeverFactory.Tests.CustomizedFactories.ExampleFactories
1+
namespace ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories
22
{
33
public class PersonFactory : MagicFactory<Person>
44
{

tests/ForeverFactory.Tests/CustomizedFactories/ExampleFactories/ProductFactory.cs renamed to tests/ForeverFactory.Tests/Factories/CustomizedFactories/ExampleFactories/ProductFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ForeverFactory.Tests.CustomizedFactories.ExampleFactories
1+
namespace ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories
22
{
33
public class ProductFactory : MagicFactory<Product>
44
{

tests/ForeverFactory.Tests/MultipleInstanceBuildingTests.cs renamed to tests/ForeverFactory.Tests/Factories/MultipleInstanceBuildingTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq;
43
using FluentAssertions;
5-
using ForeverFactory.Tests.CustomizedFactories.ExampleFactories;
4+
using ForeverFactory.Tests.Factories.CustomizedFactories.ExampleFactories;
65
using Xunit;
76

8-
namespace ForeverFactory.Tests
7+
namespace ForeverFactory.Tests.Factories
98
{
109
public class MultipleInstanceBuildingTests
1110
{

0 commit comments

Comments
 (0)