30 lines
488 B
C#
30 lines
488 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.UnitTest
|
|
{
|
|
[TestClass]
|
|
public class EntityTypeTest : TestEssential
|
|
{
|
|
[TestMethod]
|
|
public void CreateEntityTypeTest()
|
|
{
|
|
|
|
}
|
|
|
|
[TestMethod]
|
|
public void UpdateEntityTypeTest()
|
|
{
|
|
|
|
}
|
|
|
|
[TestMethod]
|
|
public void DeleteEntityTypeTest()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|