private void SetCategoriesFromTags(TestClassGenerationContext generationContext, CodeMemberMethod testMethod, Tags tags)
 {
     testGeneratorProvider.SetTestMethodCategories(generationContext, testMethod, GetNonIgnoreTags(tags));
     if (HasIgnoreTag(tags))
     {
         testGeneratorProvider.SetTestMethodIgnore(generationContext, testMethod);
     }
 }
        public void SetTestMethodIgnore(TestClassGenerationContext generationContext, CodeMemberMethod testMethod)
        {
            _unitTestGeneratorProvider.SetTestMethodIgnore(generationContext, testMethod);

            UpdateAttributes(testMethod);
        }
Пример #3
0
 public void SetTestMethodIgnore(TestClassGenerationContext generationContext, CodeMemberMethod testMethod)
 {
     baseGeneratorProvider.SetTestMethodIgnore(generationContext, testMethod);
 }