public void LoadModulesTest()
 {
     ModuleManager_Accessor target = new ModuleManager_Accessor(); // TODO: Initialize to an appropriate value
     bool bl = false;
     try
     {
         target.LoadModules();
     }
     catch { bl = true; }
     Assert.AreEqual(bl, false);
     
 }
 public void ValidPlugInPathTest()
 {
     ModuleManager_Accessor target = new ModuleManager_Accessor(); // TODO: Initialize to an appropriate value
     bool expected = true; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.ValidPlugInPath();
     Assert.AreEqual(expected, actual);
   
 }