StoryTeller.Usages.UsageGraph.Rebuild C# (CSharp) Méthode

Rebuild() public méthode

public Rebuild ( Hierarchy hierarchy ) : void
hierarchy StoryTeller.Domain.Hierarchy
Résultat void
        public void Rebuild(Hierarchy hierarchy)
        {
            Rebuild(hierarchy.GetAllTests());
        }

Same methods

UsageGraph::Rebuild ( IEnumerable tests ) : void

Usage Example

 public void SetUp()
 {
     runner = new ProjectTestRunner(DataMother.THE_GRAMMAR_FILE);
     usages = new UsageGraph(runner.GetLibary(), new ConsoleUsageGraphListener());
     usages.Rebuild(runner.Hierarchy);
 }
All Usage Examples Of StoryTeller.Usages.UsageGraph::Rebuild