30 lines
493 B
C#
30 lines
493 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.UnitTest
|
|
{
|
|
[TestClass]
|
|
public class EntityEntryTest : TestEssential
|
|
{
|
|
[TestMethod]
|
|
public void CreateEntityEntryTest()
|
|
{
|
|
|
|
}
|
|
|
|
[TestMethod]
|
|
public void UpdateEntityEntryeTest()
|
|
{
|
|
|
|
}
|
|
|
|
[TestMethod]
|
|
public void DeleteEntityEntryTest()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|