chore: deploy initial code base

This commit is contained in:
Thom Lamb
2026-05-12 10:34:30 -05:00
parent cce2961782
commit a81300a571
1829 changed files with 248331 additions and 1 deletions
@@ -0,0 +1,38 @@
using Snowflake.Data.Client;
using System.Diagnostics.CodeAnalysis;
namespace Strata.DecisionSupport.Biz.Test.Integration.IntegrationTests
{
[ExcludeFromCodeCoverage]
[TestFixture, Category("Integration"), Category("DSS")]
public class TestException : IntegrationTestBase
{
[Test]
public async Task ExceptionTest()
{
var query = "select ISNULL(null, 0) id\r\n";
try
{
var result = await _databaseContext.QueryAsync<TestClass>(query, nameof(ExceptionTest));
}
catch (SnowflakeDbException dbex)
{
await Verifier.Verify(dbex.Message, verifySettings)
.UseFileName(TestContext.CurrentContext.TestName());
}
catch (Exception)
{
throw;
}
}
public class TestClass
{
public int Id { get; set; }
}
}
}