本文整理匯總了TypeScript中sql/parts/disasterRecovery/restore/restoreViewModel.RestoreViewModel.getOptionValue方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript RestoreViewModel.getOptionValue方法的具體用法?TypeScript RestoreViewModel.getOptionValue怎麽用?TypeScript RestoreViewModel.getOptionValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sql/parts/disasterRecovery/restore/restoreViewModel.RestoreViewModel
的用法示例。
在下文中一共展示了RestoreViewModel.getOptionValue方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: test
test('update options with config info should update option correctly', () => {
let databaseList = ['db1', 'db2'];
let configInfo: { [key: string]: any } = {};
configInfo['sourceDatabaseNamesWithBackupSets'] = databaseList;
configInfo[option1String] = 'option1 from config info';
viewModel.updateOptionWithConfigInfo(configInfo);
assert.equal(3, viewModel.databaseList.length);
assert.equal('', viewModel.databaseList[0]);
assert.equal(databaseList[1], viewModel.databaseList[1]);
assert.equal(databaseList[2], viewModel.databaseList[2]);
assert.equal('option1 from config info', viewModel.getOptionValue(option1String));
// verify that the options from get restore advanced options doesn't contain option1String
options = {};
viewModel.getRestoreAdvancedOptions(options);
assert.equal(undefined, options[option1String]);
});