You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To create instances of classes, we need to be able to check their fields/methods/constructors for accessibility from package of test class. This part is error-prone because there are corner cases, sometimes you may want to look for getters/setters, etc. However, currently this logic is implemented twice: in codegen (see org.utbot.framework.codegen.util) and in fuzzer (see ObjectValueProvider). We should merge these implementations to avoid code duplication.