OmniLinkBridge/OmniLinkBridgeTest/NotificationTest.cs

19 lines
391 B
C#
Raw Normal View History

using System;
using System.Text;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OmniLinkBridge.Notifications;
namespace OmniLinkBridgeTest
{
[TestClass]
public class NotificationTest
{
[TestMethod]
public void SendNotification()
{
Notification.Notify("Title", "Description");
}
}
}