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

Commit 0da5532

Browse files
committed
Make keychain test method names consistent with the rest
1 parent 6a96687 commit 0da5532

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/tests/UnitTests/Authentication/KeychainTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class KeychainTests
1818
private static readonly SubstituteFactory SubstituteFactory = new SubstituteFactory();
1919

2020
[Test]
21-
public void Should_Initialize_When_Cache_Does_Not_Exist()
21+
public void ShouldInitializeWhenCacheDoesNotExist()
2222
{
2323
const string connectionsCachePath = @"c:\UserCachePath\";
2424

@@ -52,7 +52,7 @@ public void Should_Initialize_When_Cache_Does_Not_Exist()
5252
}
5353

5454
[Test]
55-
public void Should_Initialize_When_Cache_Invalid()
55+
public void ShouldInitializeWhenCacheInvalid()
5656
{
5757
const string connectionsCachePath = @"c:\UserCachePath\";
5858
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
@@ -92,7 +92,7 @@ public void Should_Initialize_When_Cache_Invalid()
9292
}
9393

9494
[Test]
95-
public void Should_Initialize_When_Cache_Exists()
95+
public void ShouldInitializeWhenCacheExists()
9696
{
9797
const string connectionsCachePath = @"c:\UserCachePath\";
9898
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
@@ -134,7 +134,7 @@ public void Should_Initialize_When_Cache_Exists()
134134
}
135135

136136
[Test]
137-
public void Should_Load_From_ConnectionManager()
137+
public void ShouldLoadFromConnectionManager()
138138
{
139139
const string connectionsCachePath = @"c:\UserCachePath\";
140140
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
@@ -194,7 +194,7 @@ public void Should_Load_From_ConnectionManager()
194194
}
195195

196196
[Test]
197-
public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManager()
197+
public void ShouldDeleteFromCacheWhenLoadReturnsNullFromConnectionManager()
198198
{
199199
const string connectionsCachePath = @"c:\UserCachePath\";
200200
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
@@ -248,7 +248,7 @@ public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManag
248248
}
249249

250250
[Test]
251-
public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManager_Due_To_User_Mismatch()
251+
public void ShouldDeleteFromCacheWhenLoadReturnsNullFromConnectionManagerDueToUserMismatch()
252252
{
253253
const string connectionsCachePath = @"c:\UserCachePath\";
254254
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
@@ -323,7 +323,7 @@ public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManag
323323
}
324324

325325
[Test]
326-
public void Should_Connect_Set_Credentials_Token_And_Save()
326+
public void ShouldConnectSetCredentialsTokenAndSave()
327327
{
328328
const string connectionsCachePath = @"c:\UserCachePath\";
329329
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";
@@ -409,7 +409,7 @@ public void Should_Connect_Set_Credentials_Token_And_Save()
409409
}
410410

411411
[Test]
412-
public void Should_Connect_Set_Credentials_And_Clear()
412+
public void ShouldConnectSetCredentialsAndClear()
413413
{
414414
const string connectionsCachePath = @"c:\UserCachePath\";
415415
const string connectionsCacheFile = @"c:\UserCachePath\connections.json";

0 commit comments

Comments
 (0)