File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/dotnetCampus.Ipc.Tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ namespace dotnetCampus.Ipc.Tests;
66[ TestClass ]
77public class IpcProviderTests
88{
9- [ TestMethod ( "使用 TryGetOrConnectExistsPeerAsync 尝试连接不存在的对方,可以立刻返回连接失败" ) ]
9+ [ TestMethod ( "使用 TryConnectToExistingPeerAsync 尝试连接不存在的对方,可以立刻返回连接失败" ) ]
1010 public async Task TestTryConnectToExistingPeerAsync1 ( )
1111 {
1212 var ipcProvider = new IpcProvider ( ) ;
1313 var result = await ipcProvider . TryConnectToExistingPeerAsync ( "The_Not_Exists_Peer_Name_E6EE8975-EF9A-480B-912D-B3C4530294E0" ) ;
1414 Assert . IsFalse ( result . IsSuccess ) ;
1515 }
1616
17- [ TestMethod ( "使用 TryGetOrConnectExistsPeerAsync 尝试连接存在的对方,可以返回连接成功" ) ]
17+ [ TestMethod ( "使用 TryConnectToExistingPeerAsync 尝试连接存在的对方,可以返回连接成功" ) ]
1818 public async Task TestTryConnectToExistingPeerAsync2 ( )
1919 {
2020 var peerName = "The_Exists_Peer_Name_E6EE8975-EF9A-480B-912D-B3C4530294E0" ;
You can’t perform that action at this time.
0 commit comments