using Modelo; namespace testing; public class Tests { [SetUp] public void Setup() { } [Test] public void TestConeccion() { Context c = new(); bool connect = c.Database.CanConnect(); Assert.That(connect, "true"); } }