15 lines
343 B
C#
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);
|
|
}
|
|
}
|