OmniLinkBridge/OmniLinkBridgeTest/NotificationTest.cs
Ryan Wagoner 4e2bb85623 1.1.0 - Renamed to OmniLinkBridge
- Restructured code to be event based with modules
- Added MQTT module for Home Assistant
- Added pushover notifications
- Added web service API subscriptions file to persist subscriptions
2018-10-13 22:10:54 -04:00

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");
}
}
}