mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08:00
24 lines
450 B
C#
24 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using Wox.Core.Exception;
|
|
using Wox.Core.Plugin;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Test.Plugins
|
|
{
|
|
|
|
[TestFixture]
|
|
public class PluginInitTest
|
|
{
|
|
[Test]
|
|
public void PublicAPIIsNullTest()
|
|
{
|
|
Assert.Throws(typeof(WoxCritialException), () => PluginManager.Init(null));
|
|
}
|
|
}
|
|
}
|