8 lines
183 B
C#
8 lines
183 B
C#
namespace Ludarium.IntegrationTests;
|
|
|
|
public sealed class ContractTests
|
|
{
|
|
[Fact]
|
|
public void ApiAssemblyIsLoadable() => Assert.NotNull(typeof(Program).Assembly.EntryPoint);
|
|
}
|