diff options
author | Guillaume Lacasa <guillaume.lacasa@ucaya.com> | 2013-12-06 16:16:13 +0100 |
---|---|---|
committer | Guillaume Lacasa <guillaume.lacasa@ucaya.com> | 2013-12-06 16:16:13 +0100 |
commit | 93adb5b673c1cf6d3abdb287d349ffad11ed7665 (patch) | |
tree | 3a996fd51e7b388e3c331478823efc926da9f148 /TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs | |
parent | 50beaba8291c1e777d5a63bb19400a260712f837 (diff) | |
download | TwoStepsAuthenticator-93adb5b673c1cf6d3abdb287d349ffad11ed7665.zip TwoStepsAuthenticator-93adb5b673c1cf6d3abdb287d349ffad11ed7665.tar.gz TwoStepsAuthenticator-93adb5b673c1cf6d3abdb287d349ffad11ed7665.tar.bz2 |
Documentation update
Code review
Diffstat (limited to 'TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs')
-rw-r--r-- | TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs b/TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs index 1138f54..15ae91e 100644 --- a/TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs +++ b/TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs @@ -20,18 +20,4 @@ namespace TwoStepsAuthenticator.UnitTests { } } - - internal class MockUsedCodesManager : IUsedCodesManager { - public ulong? LastChallenge { get; private set; } - public string LastCode { get; private set; } - - public void AddCode(ulong challenge, string code) { - this.LastChallenge = challenge; - this.LastCode = code; - } - - public bool IsCodeUsed(ulong challenge, string code) { - return false; - } - } } |