18 lines
291 B
C#
18 lines
291 B
C#
|
|
using Xunit;
|
||
|
|
|
||
|
|
namespace DMS.Infrastructure.UnitTests
|
||
|
|
{
|
||
|
|
public class VariableTableRepositoryTests
|
||
|
|
{
|
||
|
|
public VariableTableRepositoryTests()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
[Fact]
|
||
|
|
public void AddAsync()
|
||
|
|
{
|
||
|
|
Assert.True(true);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|