private DiscoveryResult PerformDiscover(SpecFlowV30Discoverer sut)
        {
            var testAssemblyPath = GetTestAssemblyPath();
            var testAssembly     = Assembly.LoadFrom(testAssemblyPath);

            return(sut.DiscoverInternal(testAssembly, testAssemblyPath, null));
        }
        private SpecFlowV30Discoverer CreateSut()
        {
            var stubDiscoverer = new SpecFlowV30Discoverer();

            return(stubDiscoverer);
        }
        private SpecFlowV30Discoverer CreateSut()
        {
            var stubDiscoverer = new SpecFlowV30Discoverer(AssemblyLoadContext.Default);

            return(stubDiscoverer);
        }