BotSharp/BotSharp.Core.UnitTest/EntityEntryTest.cs

30 lines
498 B
C#
Raw Normal View History

2018-04-02 22:42:11 +00:00
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Text;
2018-08-19 03:42:51 +00:00
namespace BotSharp.Core.UnitTest
2018-04-02 22:42:11 +00:00
{
[TestClass]
public class EntityEntryTest : TestEssential
{
[TestMethod]
public void CreateEntityEntryTest()
{
}
[TestMethod]
public void UpdateEntityEntryeTest()
{
}
[TestMethod]
public void DeleteEntityEntryTest()
{
}
}
}