Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Make keychain test method names consistent with the rest
Browse files Browse the repository at this point in the history
  • Loading branch information
shana committed Jul 5, 2017
1 parent 6a96687 commit 0da5532
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/tests/UnitTests/Authentication/KeychainTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class KeychainTests
private static readonly SubstituteFactory SubstituteFactory = new SubstituteFactory();

[Test]
public void Should_Initialize_When_Cache_Does_Not_Exist()
public void ShouldInitializeWhenCacheDoesNotExist()
{
const string connectionsCachePath = @"c:\UserCachePath\";

Expand Down Expand Up @@ -52,7 +52,7 @@ public void Should_Initialize_When_Cache_Does_Not_Exist()
}

[Test]
public void Should_Initialize_When_Cache_Invalid()
public void ShouldInitializeWhenCacheInvalid()
{
const string connectionsCachePath = @"c:\UserCachePath\";
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
Expand Down Expand Up @@ -92,7 +92,7 @@ public void Should_Initialize_When_Cache_Invalid()
}

[Test]
public void Should_Initialize_When_Cache_Exists()
public void ShouldInitializeWhenCacheExists()
{
const string connectionsCachePath = @"c:\UserCachePath\";
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
Expand Down Expand Up @@ -134,7 +134,7 @@ public void Should_Initialize_When_Cache_Exists()
}

[Test]
public void Should_Load_From_ConnectionManager()
public void ShouldLoadFromConnectionManager()
{
const string connectionsCachePath = @"c:\UserCachePath\";
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
Expand Down Expand Up @@ -194,7 +194,7 @@ public void Should_Load_From_ConnectionManager()
}

[Test]
public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManager()
public void ShouldDeleteFromCacheWhenLoadReturnsNullFromConnectionManager()
{
const string connectionsCachePath = @"c:\UserCachePath\";
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
Expand Down Expand Up @@ -248,7 +248,7 @@ public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManag
}

[Test]
public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManager_Due_To_User_Mismatch()
public void ShouldDeleteFromCacheWhenLoadReturnsNullFromConnectionManagerDueToUserMismatch()
{
const string connectionsCachePath = @"c:\UserCachePath\";
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
Expand Down Expand Up @@ -323,7 +323,7 @@ public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManag
}

[Test]
public void Should_Connect_Set_Credentials_Token_And_Save()
public void ShouldConnectSetCredentialsTokenAndSave()
{
const string connectionsCachePath = @"c:\UserCachePath\";
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
Expand Down Expand Up @@ -409,7 +409,7 @@ public void Should_Connect_Set_Credentials_Token_And_Save()
}

[Test]
public void Should_Connect_Set_Credentials_And_Clear()
public void ShouldConnectSetCredentialsAndClear()
{
const string connectionsCachePath = @"c:\UserCachePath\";
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
Expand Down

0 comments on commit 0da5532

Please sign in to comment.