PowerToys/Wox.Test/Plugins/PluginInitTest.cs
2015-10-30 23:23:01 +00:00

18 lines
335 B
C#

using NUnit.Framework;
using Wox.Core.Exception;
using Wox.Core.Plugin;
namespace Wox.Test.Plugins
{
[TestFixture]
public class PluginInitTest
{
[Test]
public void PublicAPIIsNullTest()
{
Assert.Throws(typeof(WoxCritialException), () => PluginManager.Init(null));
}
}
}