File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api
utbot-framework/src/main/kotlin/org/utbot/framework/codegen Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
11061106enum 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" );
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ sealed class StaticsMocking(
115115
116116object 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
121121object 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" ,
You can’t perform that action at this time.
0 commit comments