添加xunit单元测试

This commit is contained in:
陈淳
2022-12-14 00:14:22 +08:00
parent f7c74b5c96
commit c964b98240
12 changed files with 593 additions and 41 deletions

View File

@@ -0,0 +1,15 @@
using Yi.Framework.Common.Const;
using Yi.Framework.Core;
using Yi.Framework.Interface;
namespace Yi.Framework.XUnitTest
{
public class AccountTest
{
private IUserService _iUserService;
public AccountTest(IUserService iUserService) =>
(_iUserService) =
(iUserService);
}
}