mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
c596039453
1. remove usage of PushResult 2. rearrange query execution order 3. decouple UserSetting dependency 4. remove instant query 5. remove backkeydown event 6. part of #389
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));
|
|
}
|
|
}
|
|
}
|