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,26 @@
using Strata.ContinuousImprovement.Api.Test.Integration.Setup;
using Strata.ContinuousImprovement.Biz.DbContexts;
using System.Diagnostics.CodeAnalysis;
namespace Strata.ContinuousImprovement.Api.Test.Integration.Tests
{
[ExcludeFromCodeCoverage]
[TestFixture(Category = "Integration")]
public class TestFixtureSetup : ApiTestBase
{
[Test]
public async Task TestBearerToken()
{
var bearerToken = AccessToken;
Assert.That(bearerToken, Is.Not.Null.And.Not.Empty);
}
[Test]
public async Task TestCentralDbContext()
{
var centralDbContext = ServiceProperties.CentralDbContext as CentralDbContext;
Assert.That(centralDbContext, Is.Not.Null);
}
}
}