Files
FileFlowsPlugins/Telegram/Tests/TelegramTests.cs
T
John Andrews 444d46bf62 unit tests
2024-08-26 18:16:07 +12:00

24 lines
476 B
C#

#if(DEBUG)
using Microsoft.VisualStudio.TestTools.UnitTesting;
using PluginTestLibrary;
namespace FileFlows.Telegram.Tests;
[TestClass]
public class TelegramTests : TestBase
{
[TestMethod]
public void SendMessage()
{
string botToken = "sometoken";
string chatId = "somechat";
var result =
Communication.Telegram.SendMessage(botToken, chatId, "this is a test");
Assert.IsTrue(result);
}
}
#endif