File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
utbot-framework-api/src/main/kotlin/org/utbot/framework
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ object UtSettings : AbstractSettings(
155
155
/* *
156
156
* Generate summaries using plugin's custom JavaDoc tags.
157
157
*/
158
- var useCustomJavaDocTags by getBooleanProperty(false )
158
+ var useCustomJavaDocTags by getBooleanProperty(true )
159
159
160
160
/* *
161
161
* Enable the machine learning module to generate summaries for methods under test.
Original file line number Diff line number Diff line change @@ -1172,12 +1172,12 @@ enum class JavaDocCommentStyle(
1172
1172
override val description : String
1173
1173
) : CodeGenerationSettingItem {
1174
1174
CUSTOM_JAVADOC_TAGS (
1175
- displayName = " Structured via JavaDoc tags" ,
1176
- description = " Uses custom JavaDoc tags to describe test's execution path."
1175
+ displayName = " Structured via custom Javadoc tags" ,
1176
+ description = " Uses custom Javadoc tags to describe test's execution path."
1177
1177
),
1178
1178
FULL_SENTENCE_WRITTEN (
1179
- displayName = " Full sentence written " ,
1180
- description = " Describes test's execution path using full sentences ."
1179
+ displayName = " Plain text " ,
1180
+ description = " Uses plain text to describe test's execution path."
1181
1181
);
1182
1182
1183
1183
override fun toString (): String = displayName
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class SettingsWindow(val project: Project) {
39
39
CodegenLanguage ::class to "Generated test language:",
40
40
RuntimeExceptionTestsBehaviour ::class to "Test with exceptions:",
41
41
TreatOverflowAsError ::class to "Overflow detection:",
42
- JavaDocCommentStyle ::class to "JavaDoc comment style:"
42
+ JavaDocCommentStyle ::class to "Javadoc comment style:"
43
43
)
44
44
val tooltipLabels = mapOf (
45
45
CodegenLanguage ::class to "You can generate test methods in Java or Kotlin regardless of your source code language."
You can’t perform that action at this time.
0 commit comments