in teamcity-rest-client-impl/src/main/kotlin/org/jetbrains/teamcity/rest/coroutines/rest.kt [898:908]
fun buildCustomFieldsFilter(
fields: Collection<TestLocatorSettings.TestField>,
wrap: Boolean
): String {
val allFields = constructFields(fields.asSequence())
return if (wrap) {
"test($allFields)"
} else {
allFields
}
}