Files
FileFlowsPlugins/Telegram/Tests/TelegramTests.cs
2023-10-24 09:15:17 +13:00

23 lines
440 B
C#

#if(DEBUG)
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace FileFlows.Telegram.Tests;
[TestClass]
public class TelegramTests
{
[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