Skip to content

Commit 8345714

Browse files
Fix CE (#973)
1 parent bae08c4 commit 8345714

File tree

1 file changed

+4
-1
lines changed
  • utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api

1 file changed

+4
-1
lines changed

utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/Api.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1175,14 +1175,17 @@ enum class TreatOverflowAsError(
11751175
}
11761176

11771177
enum class JavaDocCommentStyle(
1178+
override val id: String,
11781179
override val displayName: String,
1179-
override val description: String
1180+
override val description: String,
11801181
) : CodeGenerationSettingItem {
11811182
CUSTOM_JAVADOC_TAGS(
1183+
id = "Structured via custom Javadoc tags",
11821184
displayName = "Structured via custom Javadoc tags",
11831185
description = "Uses custom Javadoc tags to describe test's execution path."
11841186
),
11851187
FULL_SENTENCE_WRITTEN(
1188+
id = "Plain text",
11861189
displayName = "Plain text",
11871190
description = "Uses plain text to describe test's execution path."
11881191
);

0 commit comments

Comments
 (0)