Esempio n. 1
0
 public CoreStatGraph(IStatNodeFactory nodeFactory, PathDefinitionCollection paths)
 {
     _nodeFactory = nodeFactory;
     _paths       = paths;
 }
Esempio n. 2
0
 private static CoreStatGraph CreateSut(
     IStatNodeFactory nodeFactory = null, PathDefinitionCollection paths = null) =>
 new CoreStatGraph(nodeFactory ?? Mock.Of <IStatNodeFactory>(), paths ?? CreatePathDefinitionCollection());