public void CreatePluginValidateRootPath()
        {
            TestLogger testLogger = new TestLogger();

            using (TestPluginManager pluginManager = new TestPluginManager(testLogger))
            {
                string root = pluginManager.Path();

                Assert.IsFalse(String.IsNullOrWhiteSpace(root));

                string executingAssemblyPath = Assembly.GetExecutingAssembly().Location;

                Assert.IsTrue(executingAssemblyPath.StartsWith(root, StringComparison.InvariantCultureIgnoreCase));
            }
        }