@@ -18,7 +18,7 @@ public class KeychainTests
18
18
private static readonly SubstituteFactory SubstituteFactory = new SubstituteFactory ( ) ;
19
19
20
20
[ Test ]
21
- public void Should_Initialize_When_Cache_Does_Not_Exist ( )
21
+ public void ShouldInitializeWhenCacheDoesNotExist ( )
22
22
{
23
23
const string connectionsCachePath = @"c:\UserCachePath\" ;
24
24
@@ -52,7 +52,7 @@ public void Should_Initialize_When_Cache_Does_Not_Exist()
52
52
}
53
53
54
54
[ Test ]
55
- public void Should_Initialize_When_Cache_Invalid ( )
55
+ public void ShouldInitializeWhenCacheInvalid ( )
56
56
{
57
57
const string connectionsCachePath = @"c:\UserCachePath\" ;
58
58
const string connectionsCacheFile = @"c:\UserCachePath\connections.json" ;
@@ -92,7 +92,7 @@ public void Should_Initialize_When_Cache_Invalid()
92
92
}
93
93
94
94
[ Test ]
95
- public void Should_Initialize_When_Cache_Exists ( )
95
+ public void ShouldInitializeWhenCacheExists ( )
96
96
{
97
97
const string connectionsCachePath = @"c:\UserCachePath\" ;
98
98
const string connectionsCacheFile = @"c:\UserCachePath\connections.json" ;
@@ -134,7 +134,7 @@ public void Should_Initialize_When_Cache_Exists()
134
134
}
135
135
136
136
[ Test ]
137
- public void Should_Load_From_ConnectionManager ( )
137
+ public void ShouldLoadFromConnectionManager ( )
138
138
{
139
139
const string connectionsCachePath = @"c:\UserCachePath\" ;
140
140
const string connectionsCacheFile = @"c:\UserCachePath\connections.json" ;
@@ -194,7 +194,7 @@ public void Should_Load_From_ConnectionManager()
194
194
}
195
195
196
196
[ Test ]
197
- public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManager ( )
197
+ public void ShouldDeleteFromCacheWhenLoadReturnsNullFromConnectionManager ( )
198
198
{
199
199
const string connectionsCachePath = @"c:\UserCachePath\" ;
200
200
const string connectionsCacheFile = @"c:\UserCachePath\connections.json" ;
@@ -248,7 +248,7 @@ public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManag
248
248
}
249
249
250
250
[ Test ]
251
- public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManager_Due_To_User_Mismatch ( )
251
+ public void ShouldDeleteFromCacheWhenLoadReturnsNullFromConnectionManagerDueToUserMismatch ( )
252
252
{
253
253
const string connectionsCachePath = @"c:\UserCachePath\" ;
254
254
const string connectionsCacheFile = @"c:\UserCachePath\connections.json" ;
@@ -323,7 +323,7 @@ public void Should_Delete_From_Cache_When_Load_Returns_Null_From_ConnectionManag
323
323
}
324
324
325
325
[ Test ]
326
- public void Should_Connect_Set_Credentials_Token_And_Save ( )
326
+ public void ShouldConnectSetCredentialsTokenAndSave ( )
327
327
{
328
328
const string connectionsCachePath = @"c:\UserCachePath\" ;
329
329
const string connectionsCacheFile = @"c:\UserCachePath\connections.json" ;
@@ -409,7 +409,7 @@ public void Should_Connect_Set_Credentials_Token_And_Save()
409
409
}
410
410
411
411
[ Test ]
412
- public void Should_Connect_Set_Credentials_And_Clear ( )
412
+ public void ShouldConnectSetCredentialsAndClear ( )
413
413
{
414
414
const string connectionsCachePath = @"c:\UserCachePath\" ;
415
415
const string connectionsCacheFile = @"c:\UserCachePath\connections.json" ;
0 commit comments