本文整理匯總了TypeScript中sql/parts/connection/common/connectionStatusManager.ConnectionStatusManager.getConnectionProfile方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ConnectionStatusManager.getConnectionProfile方法的具體用法?TypeScript ConnectionStatusManager.getConnectionProfile怎麽用?TypeScript ConnectionStatusManager.getConnectionProfile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sql/parts/connection/common/connectionStatusManager.ConnectionStatusManager
的用法示例。
在下文中一共展示了ConnectionStatusManager.getConnectionProfile方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: test
test('updateConnection should update the connection info', () => {
let expected = connectionProfile.groupId + '1';
let expectedConnectionId = 'new id';
connections.addConnection(connectionProfile, connection1Id);
let updatedConnection = Object.assign({}, connectionProfile, { groupId: expected, getOptionsKey: () => connectionProfile.getOptionsKey() + expected, id: expectedConnectionId });
let actualId = connections.updateConnectionProfile(updatedConnection, connection1Id);
let newId = Utils.generateUri(updatedConnection);
let actual = connections.getConnectionProfile(newId).groupId;
let actualConnectionId = connections.getConnectionProfile(newId).id;
assert.equal(actual, expected);
assert.equal(actualId, newId);
assert.equal(actualConnectionId, expectedConnectionId);
});