feat(configmanager): add config set and connection update CLI commands

Add missing CLI commands to match UI capabilities: config set commands for
all configuration sections (datasync, dataaccess, auth, ldap, search,
excelexport) and connection update command. Also adds unit tests for
SecretCommands, ValidateCommand, and TestConnectionCommand.
This commit is contained in:
Joseph Doherty
2026-01-28 15:10:22 -05:00
parent bad0102af1
commit 61694ca50b
11 changed files with 2172 additions and 2 deletions
@@ -0,0 +1,10 @@
namespace JdeScoping.ConfigManager.Cli.Tests;
/// <summary>
/// Collection definition for tests that redirect Console.Out or Console.Error.
/// These tests must run sequentially to avoid interference.
/// </summary>
[CollectionDefinition("Console Tests", DisableParallelization = true)]
public class ConsoleTestCollection
{
}