File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1175,14 +1175,17 @@ enum class TreatOverflowAsError(
1175
1175
}
1176
1176
1177
1177
enum class JavaDocCommentStyle (
1178
+ override val id : String ,
1178
1179
override val displayName : String ,
1179
- override val description : String
1180
+ override val description : String ,
1180
1181
) : CodeGenerationSettingItem {
1181
1182
CUSTOM_JAVADOC_TAGS (
1183
+ id = " Structured via custom Javadoc tags" ,
1182
1184
displayName = " Structured via custom Javadoc tags" ,
1183
1185
description = " Uses custom Javadoc tags to describe test's execution path."
1184
1186
),
1185
1187
FULL_SENTENCE_WRITTEN (
1188
+ id = " Plain text" ,
1186
1189
displayName = " Plain text" ,
1187
1190
description = " Uses plain text to describe test's execution path."
1188
1191
);
You can’t perform that action at this time.
0 commit comments