-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
279 additions
and
1,411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,6 @@ _ReSharper* | |
Index.dat | ||
Storage.dat | ||
packages | ||
.cr/ | ||
.vs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This work is licensed by Improving under the following license: | ||
http://creativecommons.org/licenses/by-nc-sa/3.0/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using Squire.Framework; | ||
using System; | ||
using System.Linq.Expressions; | ||
|
||
namespace Squire | ||
{ | ||
[TestClass] | ||
public class DelegatesKihon : DelegatesKihonBase | ||
{ | ||
public override Action Return_An_Action_That_Calls_Hit_On_a(ITarget a) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override Action<ITarget> Return_An_Action_That_Calls_Hit_On_Its_Parameter() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public override Expression<Func<bool>> Return_An_Expression_That_Is_a_or_b(bool a, bool b) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,29 @@ | ||
using System; | ||
using Castle.Windsor; | ||
using NUnit.Framework; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
|
||
namespace Squire.Framework | ||
{ | ||
|
||
[TestFixture] | ||
[TestClass] | ||
public abstract class BaseKihon | ||
{ | ||
private IWindsorContainer container; | ||
|
||
[SetUp] | ||
[TestInitialize] | ||
public void Initialize() | ||
{ | ||
container = new WindsorContainer(); | ||
RegisterComponents(container); | ||
BeforeEachTest(); | ||
} | ||
|
||
[TearDown] | ||
[TestCleanup] | ||
public void Cleanup() | ||
{ | ||
AfterEachTest(); | ||
} | ||
|
||
protected virtual void RegisterComponents(IWindsorContainer container) | ||
{ | ||
} | ||
protected virtual void BeforeEachTest() | ||
{ | ||
} | ||
protected virtual void AfterEachTest() | ||
{ | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.