mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
18 lines
335 B
C#
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));
|
|
}
|
|
}
|
|
}
|