Flow.Launcher/Flow.Launcher.Test/Plugins/PluginInitTest.cs

18 lines
391 B
C#
Raw Normal View History

2015-10-30 23:17:34 +00:00
using NUnit.Framework;
2020-04-21 09:12:17 +00:00
using Flow.Launcher.Core.Plugin;
using Flow.Launcher.Infrastructure.Exception;
2014-12-29 15:02:50 +00:00
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Test.Plugins
2014-12-29 15:02:50 +00:00
{
[TestFixture]
public class PluginInitTest
{
[Test]
public void PublicAPIIsNullTest()
{
2020-04-21 09:12:17 +00:00
//Assert.Throws(typeof(Flow.LauncherFatalException), () => PluginManager.Initialize(null));
2014-12-29 15:02:50 +00:00
}
}
}