summaryrefslogtreecommitdiffstats
path: root/TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs
diff options
context:
space:
mode:
authorGuillaume Lacasa <guillaume.lacasa@ucaya.com>2013-12-06 16:16:13 +0100
committerGuillaume Lacasa <guillaume.lacasa@ucaya.com>2013-12-06 16:16:13 +0100
commit93adb5b673c1cf6d3abdb287d349ffad11ed7665 (patch)
tree3a996fd51e7b388e3c331478823efc926da9f148 /TwoStepsAuthenticator.UnitTests/UsedCodesManagerTests.cs
parent50beaba8291c1e777d5a63bb19400a260712f837 (diff)
downloadTwoStepsAuthenticator-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.cs14
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;
- }
- }
}