elsa-core/test/unit/Elsa.Common.UnitTests/CShellsCompatibilityTests.cs
2026-07-11 15:38:09 +02:00

15 lines
343 B
C#

using Elsa.Common.ShellFeatures;
namespace Elsa.Common.UnitTests;
public class CShellsCompatibilityTests
{
[Fact]
public void ElsaCommonTypesCanBeLoadedAgainstQuartzMinimumCShellsVersion()
{
var exception = Record.Exception(() => typeof(MultitenancyFeature).Assembly.GetTypes());
Assert.Null(exception);
}
}