Skip to content

Commit 4d083fa

Browse files
committed
Remove summary checks from engine checks
1 parent 91617cb commit 4d083fa

File tree

4 files changed

+238
-1087
lines changed

4 files changed

+238
-1087
lines changed

utbot-framework-api/src/main/kotlin/org/utbot/framework/UtSettings.kt

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -116,21 +116,6 @@ object UtSettings : AbstractSettings(logger, defaultKeyForSettingsPath, defaultS
116116
*/
117117
var useExpressionSimplification by getBooleanProperty(true)
118118

119-
/**
120-
* Activate or deactivate tests on comments
121-
*/
122-
var testSummary by getBooleanProperty(true)
123-
124-
/**
125-
* Activate or deactivate tests on names
126-
*/
127-
var testName by getBooleanProperty(true)
128-
129-
/**
130-
* Activate or deactivate tests on displayNames
131-
*/
132-
var testDisplayName by getBooleanProperty(true)
133-
134119
/**
135120
* Enable the Summarization module to generate summaries for methods under test.
136121
*

utbot-framework-test/src/test/kotlin/org/utbot/examples/strings/StringExamplesTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import org.utbot.testing.atLeast
1616
import org.utbot.testing.between
1717
import org.utbot.testing.ignoreExecutionsNumber
1818
import org.utbot.testing.isException
19-
import org.utbot.testing.keyMatch
2019
import java.util.Locale
2120

2221
internal class StringExamplesTest : UtValueTestCaseChecker(

utbot-framework-test/src/test/kotlin/org/utbot/examples/structures/StandardStructuresTest.kt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
package org.utbot.examples.structures
22

3-
import org.utbot.framework.plugin.api.DocCodeStmt
4-
import org.utbot.framework.plugin.api.DocPreTagStatement
5-
import org.utbot.framework.plugin.api.DocRegularStmt
6-
import org.utbot.framework.plugin.api.DocStatement
73
import java.util.LinkedList
84
import java.util.TreeMap
95
import org.junit.jupiter.api.Disabled
@@ -13,8 +9,6 @@ import org.utbot.testcheckers.eq
139
import org.utbot.testing.CodeGeneration
1410
import org.utbot.testing.DoNotCalculate
1511
import org.utbot.testing.UtValueTestCaseChecker
16-
import org.utbot.testing.keyContain
17-
import org.utbot.testing.keyMatch
1812

1913
internal class StandardStructuresTest : UtValueTestCaseChecker(
2014
testClass = StandardStructures::class,

0 commit comments

Comments
 (0)