Bickle.ReSharper.ElementFactory.CreateContainerElements C# (CSharp) Method

CreateContainerElements() public method

public CreateContainerElements ( ISpec spec ) : void
spec ISpec
return void
        public void CreateContainerElements(ISpec spec)
        {
            var specElement = new SpecElement(_provider, spec, _project);
            _consumer(specElement);
            var exampleContainers = spec.ExampleContainers;
            CreateContainerElements(exampleContainers, specElement);
        }

Same methods

ElementFactory::CreateContainerElements ( IExampleContainer exampleContainers, UnitTestElement parent ) : void