BotSharp/BotSharp.Core.UnitTest/BotTrainerTest.cs

19 lines
379 B
C#
Raw Normal View History

2018-06-13 12:23:03 +00:00
using BotSharp.Core.Engines;
using BotSharp.Platform.Models;
2018-06-13 12:23:03 +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-06-13 12:23:03 +00:00
{
[TestClass]
public class BotTrainerTest : TestEssential
{
[TestMethod]
2018-08-28 14:58:35 +00:00
public async void TrainingTest()
2018-06-13 12:23:03 +00:00
{
}
}
}