public string Discover(Assembly testAssembly, string testAssemblyPath, string configFilePath)
        {
            if (_discoverer == null)
            {
                _discoverer = CreateDiscoverer();
            }

            return(_discoverer.Discover(testAssembly, testAssemblyPath, configFilePath));
        }