Bottles.Services.Tests.BottleServiceFinderTester.finds_the_bootstrappers C# (CSharp) Method

finds_the_bootstrappers() private method

private finds_the_bootstrappers ( ) : void
return void
        public void finds_the_bootstrappers()
        {
            var bootstrappers = BottleServiceFinder.FindBootstrappers(theAssemblies);

            var types = bootstrappers.Select(x => x.GetType());
            types.ShouldContain(typeof(EmptyBootstrapper));
            types.ShouldContain(typeof(NonBottleServiceBootstrapper));
            types.ShouldContain(typeof(StubServiceBootstrapper));
        }