SqlSugar/Src/Asp.NetCore2/MongoDbTest/UnitTest/Cases.cs
2025-06-12 15:19:50 +08:00

22 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace MongoDbTest
{
public class Cases
{
public static void Init()
{
SingleQuery.Init();
}
public static void ThrowUnitError()
{
throw new Exception("unit error");
}
}
}