public DeleteTestDefinitionItems(IContentTestStore contentTestStore) : base(contentTestStore)
 {
     this.contentTestStore = (contentTestStore ?? ContentTestingFactory.Instance.ContentTestStore);
 }
Exemple #2
0
 public GetContentTestingWarnings(IContentTestStore contentTestStore, ITestCandidateInspectionInitiator startTestOptions) : base(contentTestStore, startTestOptions)
 {
     testCandidateInitiator = (startTestOptions ?? ContentTestingFactory.Instance.TestCandidateInspectionInitiator);
 }
Exemple #3
0
 public SuggestedTestsCountRequest(IContentTestStore contentTestStore)
 {
     Assert.ArgumentNotNull(contentTestStore, "contentTestStore");
     this.contentTestStore = contentTestStore;
 }