using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("SIGCM2.Api.Tests")] namespace SIGCM2.TestSupport; /// /// Centralized connection string constants for integration test databases. /// Single source of truth — change server/credentials here only. /// public static class TestConnectionStrings { /// Used by SIGCM2.Application.Tests via SqlTestFixture (parameterless ctor). public const string AppTestDb = "Server=TECNICA3;Database=SIGCM2_Test_App;User Id=desarrollo;Password=desarrollo2026;TrustServerCertificate=True;"; /// Used by SIGCM2.Api.Tests via TestWebAppFactory. public const string ApiTestDb = "Server=TECNICA3;Database=SIGCM2_Test_Api;User Id=desarrollo;Password=desarrollo2026;TrustServerCertificate=True;"; }