Skip to content

Commit

Permalink
Helpers moved.
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkcod committed Jul 12, 2020
1 parent 55efffe commit 408628f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Source/Check.That/Helpers/ActionSpy.cs
@@ -1,8 +1,8 @@
using System;
using System;
using System.Linq;
using System.Linq.Expressions;

namespace Cone.Helpers
namespace CheckThat.Helpers
{
public class ActionSpy : MethodSpy
{
Expand Down
4 changes: 2 additions & 2 deletions Source/Check.That/Helpers/EventSpy.cs
@@ -1,8 +1,8 @@
using System;
using System;
using System.Linq;
using System.Linq.Expressions;

namespace Cone.Helpers
namespace CheckThat.Helpers
{
public class EventSpy<T> : MethodSpy where T : EventArgs
{
Expand Down
4 changes: 2 additions & 2 deletions Source/Check.That/Helpers/FuncSpy.cs
@@ -1,8 +1,8 @@
using System;
using System;
using System.Linq;
using System.Linq.Expressions;

namespace Cone.Helpers
namespace CheckThat.Helpers
{
public class FuncSpy<TResult> : MethodSpy
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Check.That/Helpers/MethodSpy.cs
Expand Up @@ -6,7 +6,7 @@
using System.Threading;
using static CheckThat.Check;

namespace Cone.Helpers
namespace CheckThat.Helpers
{
public class MethodSpy
{
Expand Down
@@ -1,7 +1,8 @@
using System;
using CheckThat;

namespace Cone.Helpers
using Cone;

namespace CheckThat.Helpers
{
[Describe(typeof(ActionSpy))]
public class ActionSpySpec
Expand Down
@@ -1,8 +1,9 @@
using System;
using System.Collections.Generic;
using CheckThat;
using Cone;

namespace Cone.Helpers
namespace CheckThat.Helpers
{
[Describe(typeof(EventSpy<>))]
public class EventSpySpec
Expand Down
@@ -1,7 +1,8 @@
using System;
using CheckThat;
using Cone;

namespace Cone.Helpers
namespace CheckThat.Helpers
{
[Describe(typeof(MethodSpy))]
public class MethodSpySpec
Expand Down

0 comments on commit 408628f

Please sign in to comment.