Files
SqlSugar/Src/Asp.Net/OracleTest/Program.cs

25 lines
406 B
C#
Raw Normal View History

2019-05-27 17:07:16 +08:00
using OrmTest.PerformanceTesting;
2017-08-03 23:12:44 +08:00
using OrmTest.UnitTest;
2019-05-27 17:07:16 +08:00
using System;
2017-08-03 23:12:44 +08:00
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
2019-05-27 17:07:16 +08:00
OldTestMain.Init();
2019-05-27 20:32:40 +08:00
Demo0_SqlSugarClient.Init();
2019-05-27 17:07:16 +08:00
//Unit test
NewUnitTest.Init();
2017-08-04 00:59:43 +08:00
2019-05-27 17:07:16 +08:00
Console.WriteLine("all successfully.");
Console.ReadKey();
2017-08-03 23:12:44 +08:00
}
2019-05-27 17:07:16 +08:00
2017-08-03 23:12:44 +08:00
}
}