[Test] Add ability to mark group of tests with specific tags

Currently tags can be applied to all tests in specific testdata
  directory by placing `_tags.txt` file in it, where all tags should
  be listed on separate lines. Test generator adds those tags to
  corresponding generated test classes with `@Tag` annotation

Please note that is applicable only to JUnit 5 tests
This commit is contained in:
Dmitriy Novozhilov
2021-07-14 16:32:40 +03:00
committed by teamcityserver
parent b9c549803d
commit c2e2068682
10 changed files with 89 additions and 7 deletions
@@ -176,6 +176,9 @@ private class TestGeneratorImplInstance(
override val imports: Set<Class<*>>
get() = super.imports
override val tags: List<String>
get() = emptyList()
}
}