Skip to content

Commit 63e2252

Browse files
authored
Tooltips correction for #343 (#410)
Co-authored-by: Alena Lisevych <>
1 parent 8b3defa commit 63e2252

File tree

2 files changed

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

2 files changed

+4
-4
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1044,7 +1044,7 @@ enum class MockStrategyApi(
10441044
override val displayName: String,
10451045
override val description: String
10461046
) : CodeGenerationSettingItem {
1047-
NO_MOCKS("No mocks", "Do not use Mock frameworks at all"),
1047+
NO_MOCKS("No mocks", "Do not use mock frameworks at all"),
10481048
OTHER_PACKAGES(
10491049
"Other packages: $MOCKITO",
10501050
"Mock all classes outside the current package except system ones"
@@ -1105,7 +1105,7 @@ enum class MockFramework(
11051105

11061106
enum class CodegenLanguage(
11071107
override val displayName: String,
1108-
@Suppress("unused") override val description: String = "Generating unit tests in $displayName"
1108+
@Suppress("unused") override val description: String = "Generate unit tests in $displayName"
11091109
) : CodeGenerationSettingItem {
11101110
JAVA(displayName = "Java"),
11111111
KOTLIN(displayName = "Kotlin");

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/Domain.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ sealed class StaticsMocking(
115115

116116
object NoStaticMocking : StaticsMocking(
117117
displayName = "No static mocking",
118-
description = "Don't use additional settings to mock static fields"
118+
description = "Do not use additional settings to mock static fields"
119119
)
120120

121121
object MockitoStaticMocking : StaticsMocking(displayName = "Mockito static mocking") {
@@ -551,7 +551,7 @@ enum class ParametrizedTestSource(
551551
) : CodeGenerationSettingItem {
552552
DO_NOT_PARAMETRIZE(
553553
displayName = "Not parametrized",
554-
description = "Don't generate parametrized tests"
554+
description = "Do not generate parametrized tests"
555555
),
556556
PARAMETRIZE(
557557
displayName = "Parametrized",

0 commit comments

Comments
 (0)