mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2024-12-22 18:52:24 +00:00
19 lines
391 B
C#
19 lines
391 B
C#
|
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|