mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
18 lines
343 B
C#
18 lines
343 B
C#
using NUnit.Framework;
|
|
using Wox.Core.Plugin;
|
|
using Wox.Infrastructure.Exception;
|
|
|
|
namespace Wox.Test.Plugins
|
|
{
|
|
|
|
[TestFixture]
|
|
public class PluginInitTest
|
|
{
|
|
[Test]
|
|
public void PublicAPIIsNullTest()
|
|
{
|
|
Assert.Throws(typeof(WoxFatalException), () => PluginManager.Init(null));
|
|
}
|
|
}
|
|
}
|