Ejemplo n.º 1
0
 public MainViewModel(ITfsExplorer explorer,
                      IServerManagement servers,
                      ITestCases testCases) : this()
 {
     _explorer = explorer;
     Servers   = servers;
     Servers.PropertyChanged += Servers_PropertyChanged;
     TestCases = testCases;
 }
Ejemplo n.º 2
0
 public Example(ILanguageInfo info, string name, string description, ITestCases testCases)
     : base(info, GherkinKeyword.Examples, name, description)
 {
     this.TestCases = testCases;
 }