Esempio n. 1
0
        public void TestPluginWithControllers()
        {
            Sample1Plugin testPlugin = new Sample1Plugin();
            //testPlugin.ControllerTypes.Add(typeof(TestController));

            //Assert.IsTrue(testPlugin.ControllerTypes.Any());
        }
Esempio n. 2
0
        public void TestPluginInstance()
        {
            Sample1Plugin testPlugin = new Sample1Plugin();

            Assert.AreEqual(TestConsts.TestPluginName, testPlugin.PluginName);
            //Assert.IsTrue(testPlugin.ControllerTypes.Any());
        }