Skip to content

Commit c6ab919

Browse files
Additional renamings
1 parent 28a3d6f commit c6ab919

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

utbot-framework/src/main/kotlin/org/utbot/external/api/UtBotJavaApi.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ object UtBotJavaApi {
102102
}
103103

104104
/**
105-
* Generates test cases using default workflow.
105+
* Generates test sets using default workflow.
106106
*
107-
* @see [fuzzingTestCases]
107+
* @see [fuzzingTestSets]
108108
*/
109109
@JvmStatic
110110
@JvmOverloads
@@ -150,7 +150,7 @@ object UtBotJavaApi {
150150
*/
151151
@JvmStatic
152152
@JvmOverloads
153-
fun fuzzingTestCases(
153+
fun fuzzingTestSets(
154154
methodsForAutomaticGeneration: List<TestMethodInfo>,
155155
classUnderTest: Class<*>,
156156
classpath: String,

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/tree/CgTestClassConstructor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ internal class CgTestClassConstructor(val context: CgContext) :
4141
private val testsGenerationReport: TestsGenerationReport = TestsGenerationReport()
4242

4343
/**
44-
* Given a list of test cases constructs CgTestClass
44+
* Given a list of test sets constructs CgTestClass
4545
*/
4646
fun construct(testSets: Collection<UtMethodTestSet>): CgTestClassFile {
4747
return buildTestClassFile {

utbot-framework/src/test/java/org/utbot/examples/manual/UtBotJavaApiTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,7 @@ public void testFuzzingSimple() {
12731273
TestMethodInfo methodInfo = new TestMethodInfo(
12741274
methodUnderTest,
12751275
methodState);
1276-
List<UtMethodTestSet> testSets1 = UtBotJavaApi.fuzzingTestCases(
1276+
List<UtMethodTestSet> testSets1 = UtBotJavaApi.fuzzingTestSets(
12771277
Collections.singletonList(
12781278
methodInfo
12791279
),

0 commit comments

Comments
 (0)