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

            return(_discoverer.Discover(testAssembly, testAssemblyPath, configFilePath));
        }
 public void Dispose()
 {
     _discoverer?.Dispose();
     _discoverer = null;
 }