We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f1871 commit d2bcc20Copy full SHA for d2bcc20
clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/grpc/GrpcRequestBuildersImpl.kt
@@ -23,12 +23,13 @@ internal data class ProjectContextBuilder(
23
}
24
return Testgen.ProjectContext.newBuilder()
25
.setProjectPath(projectPath)
26
- .setTestDirPath(
+ .setTestDirRelPath(
27
remoteMapping.convertToRemote(
28
projectNioPath.resolve(relativeTestsDirNioPath).toString(),
29
UTBot.message("settings.project.testsDir.wrong")
30
)
31
32
+ .setReportDirRelPath("utbot_report")
33
.setBuildDirRelPath(buildDirRelPath)
34
.setProjectName(projectName)
35
.setProjectPath(remoteMapping.convertToRemote(projectPath, UTBot.message("projectPath.wrong.conversion")))
0 commit comments