elsa-core/test/unit/Elsa.Common.UnitTests/CShellsCompatibilityTests.cs

15 lines
343 B
C#
Raw Normal View History

2026-07-11 13:38:09 +00:00
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);
}
}