mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
18 lines
351 B
C#
18 lines
351 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.Initialize(null));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|