TestSpark - a plugin for generating unit tests. TestSpark natively integrates different AI-based test generation tools and techniques in the IDE. Started by SERG TU Delft. Currently under implementation by JetBrains Research (Software Testing Research) for research purposes.
MIT License
53
stars
23
forks
source link
Create a separate `TestCompilationDependencies` class for Kotlin #315
Currently there is one class that stores the dependancies for the compilation part, that are added during compilation even if they are not stated in the project gradle file.
Description
Currently there is one class that stores the dependancies for the compilation part, that are added during compilation even if they are not stated in the project gradle file.
This dependancies are Java specific:
We should make the separate
TestCompilationDependencies
for each language and probably for each framework.For example:
For Kotlin the
"org.mockito.kotlin:mockito-kotlin:5.1.0"
is missing.