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 Original file line number Diff line number Diff line change @@ -1044,7 +1044,7 @@ enum class MockStrategyApi(
1044
1044
override val displayName : String ,
1045
1045
override val description : String
1046
1046
) : 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" ),
1048
1048
OTHER_PACKAGES (
1049
1049
" Other packages: $MOCKITO " ,
1050
1050
" Mock all classes outside the current package except system ones"
@@ -1105,7 +1105,7 @@ enum class MockFramework(
1105
1105
1106
1106
enum class CodegenLanguage (
1107
1107
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 "
1109
1109
) : CodeGenerationSettingItem {
1110
1110
JAVA (displayName = " Java" ),
1111
1111
KOTLIN (displayName = " Kotlin" );
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ sealed class StaticsMocking(
115
115
116
116
object NoStaticMocking : StaticsMocking(
117
117
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"
119
119
)
120
120
121
121
object MockitoStaticMocking : StaticsMocking(displayName = " Mockito static mocking" ) {
@@ -551,7 +551,7 @@ enum class ParametrizedTestSource(
551
551
) : CodeGenerationSettingItem {
552
552
DO_NOT_PARAMETRIZE (
553
553
displayName = " Not parametrized" ,
554
- description = " Don't generate parametrized tests"
554
+ description = " Do not generate parametrized tests"
555
555
),
556
556
PARAMETRIZE (
557
557
displayName = " Parametrized" ,
You can’t perform that action at this time.
0 commit comments