3 changed files with 41 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
using Microsoft.VisualStudio.TestTools.UnitTesting; |
|||
using Lion.AbpPro.DataDictionaryManagement.DataDictionaries; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Lion.AbpPro.DataDictionaryManagement.DataDictionaries.Tests |
|||
{ |
|||
[TestClass()] |
|||
public class DataDictionaryControllerTests |
|||
{ |
|||
[TestMethod()] |
|||
public void CreateAsyncTest() |
|||
{ |
|||
Assert.Fail(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
|
|||
<PropertyGroup> |
|||
<TargetFramework>.NETCoreApp,Version=v6.0</TargetFramework> |
|||
|
|||
<IsPackable>false</IsPackable> |
|||
</PropertyGroup> |
|||
|
|||
<ItemGroup> |
|||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" /> |
|||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" /> |
|||
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" /> |
|||
<PackageReference Include="coverlet.collector" Version="3.0.2" /> |
|||
</ItemGroup> |
|||
|
|||
<ItemGroup> |
|||
<ProjectReference Include="..\Lion.AbpPro.DataDictionaryManagement.HttpApi\Lion.AbpPro.DataDictionaryManagement.HttpApi.csproj" /> |
|||
</ItemGroup> |
|||
|
|||
</Project> |
|||
Loading…
Reference in new issue