This commit is contained in:
sunkaixuan 2019-05-19 11:36:49 +08:00
parent f522b95cfc
commit 6ed7dd3a7c
3 changed files with 17 additions and 0 deletions

View File

@ -140,6 +140,7 @@
<Compile Include="OldTest\UnitTest\Setting\MapColumn.cs" /> <Compile Include="OldTest\UnitTest\Setting\MapColumn.cs" />
<Compile Include="OldTest\UnitTest\Setting\MapTable.cs" /> <Compile Include="OldTest\UnitTest\Setting\MapTable.cs" />
<Compile Include="OldTest\UnitTest\Update.cs" /> <Compile Include="OldTest\UnitTest\Update.cs" />
<Compile Include="UnitTest\UAdo.cs" />
<Compile Include="UnitTest\UThread3.cs" /> <Compile Include="UnitTest\UThread3.cs" />
<Compile Include="UnitTest\UThread2.cs" /> <Compile Include="UnitTest\UThread2.cs" />
<Compile Include="UnitTest\UValidate.cs" /> <Compile Include="UnitTest\UValidate.cs" />

View File

@ -26,6 +26,7 @@ namespace OrmTest
public static void Init() public static void Init()
{ {
Json(); Json();
Ado();
Thread(); Thread();
Thread2(); Thread2();
Thread3(); Thread3();

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public partial class NewUnitTest
{
public static void Ado() {
}
}
}