Skip to content

Commit e8f5409

Browse files
committed
move tests
1 parent 196401f commit e8f5409

File tree

6 files changed

+4
-12
lines changed

6 files changed

+4
-12
lines changed

src/Arbiter.CommandQuery/Arbiter.CommandQuery.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
<Description>Command Query Responsibility Segregation (CQRS) framework based on mediator pattern</Description>
77
</PropertyGroup>
88

9-
<ItemGroup>
10-
<Compile Remove="Extensions\GuidExtensions.cs" />
11-
</ItemGroup>
12-
139
<ItemGroup>
1410
<PackageReference Include="MessagePack" />
1511
<PackageReference Include="System.Linq.Dynamic.Core" />

test/Arbiter.CommandQuery.Tests/Arbiter.CommandQuery.Tests.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
<IsPackable>false</IsPackable>
99
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<Compile Remove="Extensions\GuidExtensionsTests.cs" />
13-
</ItemGroup>
14-
1511
<ItemGroup>
1612
<PackageReference Include="AwesomeAssertions" />
1713
<PackageReference Include="Bogus" />

test/Arbiter.CommandQuery.Tests/MockDataService.cs renamed to test/Arbiter.Dispatcher.Client.Tests/MockDataService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
using Rocks;
44

5-
namespace Arbiter.CommandQuery.Tests;
5+
namespace Arbiter.Dispatcher.Client.Tests;
66

77
[RockPartial(typeof(IDispatcherDataService), BuildType.Create)]
88
public sealed partial class MockDataService;

test/Arbiter.CommandQuery.Tests/State/ModelStateEditorTests.cs renamed to test/Arbiter.Dispatcher.Client.Tests/State/ModelStateEditorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Rocks;
55

6-
namespace Arbiter.CommandQuery.Tests.State;
6+
namespace Arbiter.Dispatcher.Client.Tests.State;
77

88
public class ModelStateEditorTests
99
{

test/Arbiter.CommandQuery.Tests/State/ModelStateLoaderTests.cs renamed to test/Arbiter.Dispatcher.Client.Tests/State/ModelStateLoaderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Arbiter.CommandQuery.Definitions;
22
using Arbiter.Dispatcher.State;
33

4-
namespace Arbiter.CommandQuery.Tests.State;
4+
namespace Arbiter.Dispatcher.Client.Tests.State;
55

66

77

test/Arbiter.CommandQuery.Tests/State/ModelStateManagerTests.cs renamed to test/Arbiter.Dispatcher.Client.Tests/State/ModelStateManagerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Arbiter.Dispatcher.State;
22

3-
namespace Arbiter.CommandQuery.Tests.State;
3+
namespace Arbiter.Dispatcher.Client.Tests.State;
44

55
public class ModelStateManagerTests
66
{

0 commit comments

Comments
 (0)