Exemple #1
0
 public PsAddSetTests(string verb, string noun, string schemaName)
 {
     this.verb            = verb;
     this.noun            = noun;
     psTestRunner         = new PsTestRunner <T>();
     searchableRepository = new SearchableRepository <T>(ConfigCommandFactory, schemaName);
 }
 public PsDeleteTests(string noun, string schemaName)
 {
     this.noun            = noun;
     psTestRunner         = new PsTestRunner <T>();
     searchableRepository = new SearchableRepository <T>(ConfigCommandFactory, schemaName);
 }
 public PsAddMemberTests(string noun, string groupSchemaName)
 {
     this.noun            = noun;
     psTestRunner         = new PsTestRunner <TGroup>();
     searchableRepository = new SearchableRepository <TGroup>(ConfigCommandFactory, groupSchemaName);
 }
 public PsGetTests(string noun, ConfigTypes configType)
 {
     this.configType = configType;
     command         = string.Format(configType == ConfigTypes.Candidate ? "Get-{0} -FromCandidateConfig" : "Get-{0}", noun);
     psTestRunner    = new PsTestRunner <T>();
 }