SqlSugar源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
365 B

6 years ago
using OrmTest.PerformanceTesting;
7 years ago
using OrmTest.UnitTest;
6 years ago
using System;
7 years ago
namespace OrmTest
{
class Program
{
static void Main(string[] args)
{
6 years ago
OldTestMain.Init();
//Unit test
NewUnitTest.Init();
7 years ago
6 years ago
Console.WriteLine("all successfully.");
Console.ReadKey();
7 years ago
}
6 years ago
7 years ago
}
}