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.
17 lines
381 B
17 lines
381 B
using System.Diagnostics;
|
|
using Xunit;
|
|
|
|
namespace STranslateDLL.Tests;
|
|
|
|
public class LocalModeTests
|
|
{
|
|
[Fact()]
|
|
public async Task ExecuteAsyncTest()
|
|
{
|
|
var model = new LocalMode();
|
|
Debug.WriteLine(DateTime.Now.ToLongTimeString() + "Start");
|
|
await model.ExecuteAsync();
|
|
Debug.WriteLine(DateTime.Now.ToLongTimeString() + "Stop");
|
|
}
|
|
}
|