Skip to content

Commit

Permalink
Fixed rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Damtev committed Oct 7, 2022
1 parent bd2e2e6 commit b05acbb
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import org.utbot.common.appendHtmlLine
import org.utbot.framework.codegen.model.constructor.CgMethodTestSet
import org.utbot.framework.codegen.model.tree.CgTestMethod
import org.utbot.framework.codegen.model.tree.CgTestMethodType
import org.utbot.framework.codegen.model.tree.CgTestMethodType.*
import org.utbot.framework.plugin.api.ExecutableId
import org.utbot.framework.plugin.api.util.kClass
import kotlin.reflect.KClass
Expand Down Expand Up @@ -57,11 +58,11 @@ data class TestsGenerationReport(

testMethods.forEach {
when (it.type) {
CgTestMethodType.SUCCESSFUL -> updateExecutions(it, successfulExecutions)
CgTestMethodType.FAILING -> updateExecutions(it, failedExecutions)
CgTestMethodType.TIMEOUT -> updateExecutions(it, timeoutExecutions)
CgTestMethodType.CRASH -> updateExecutions(it, crashExecutions)
CgTestMethodType.PARAMETRIZED -> {
SUCCESSFUL, PASSED_EXCEPTION -> updateExecutions(it, successfulExecutions)
FAILING -> updateExecutions(it, failedExecutions)
TIMEOUT -> updateExecutions(it, timeoutExecutions)
CRASH -> updateExecutions(it, crashExecutions)
PARAMETRIZED -> {
// Parametrized tests are not supported in the tests report yet
// TODO JIRA:1507
}
Expand Down

0 comments on commit b05acbb

Please sign in to comment.