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(
11751175}
11761176
11771177enum 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 );
You can’t perform that action at this time.
0 commit comments