-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Run ContestEstimator with the following options:
timeLimit = 120
methodFilter = "spoon.reflect.visitor.ImportScannerImpl.*"
projectFilter = listOf("spoon")
The are multiple similar warnings in logs (absolutely unimformative about real problem reasons, because executionResult.cause
is absent).
As a result, coverage for this class is about 3%
12:15:49.114 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#isInCollisionWithLocalMethod(spoon.reflect.reference.CtExecutableReference)
java.lang.Exception:
12:15:49.132 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#isInCollisionWithLocalMethod(spoon.reflect.reference.CtExecutableReference)
java.lang.Exception:
12:15:49.328 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#computeImports(spoon.reflect.declaration.CtElement)
java.lang.Exception:
12:15:49.351 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#computeImports(spoon.reflect.declaration.CtElement)
java.lang.Exception:
12:15:49.368 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#computeImports(spoon.reflect.declaration.CtElement)
java.lang.Exception:
12:15:49.386 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#computeImports(spoon.reflect.declaration.CtElement)
java.lang.Exception:
12:15:50.498 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#visitCtCatchVariable(spoon.reflect.code.CtCatchVariable)
java.lang.Exception:
12:15:50.577 | WARN | Execution failed before method under test call on (id:21)spoon.reflect.visitor.ImportScannerImpl#visitCtCatchVariable(spoon.reflect.code.CtCatchVariable)
java.lang.Exception:
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
EgorkaKulikov commentedon Nov 24, 2023
This is a very popular problem on
spoon
project. As a result, we have very bad coverage. @Damtev, please take into account too.Damtev commentedon Nov 24, 2023
There is something wrong either in the
methodFilter
or in theproject
- they do not match with each other. @EgorkaKulikov please, check.EgorkaKulikov commentedon Nov 24, 2023
Sorry @Damtev , typical copypaste problem. fixed.