Skip to content

Commit

Permalink
Comments update
Browse files Browse the repository at this point in the history
  • Loading branch information
Iurii Zaitsev committed Oct 11, 2024
1 parent 89919e8 commit 51b9357
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ abstract class TestCompiler(libPaths: List<String>, junitLibPaths: List<String>)
* @param generatedTestCasesPaths A list of file paths where the generated test cases are located.
* @param buildPath All the directories where the compiled code of the project under test is saved. This path is used as a classpath to run each test case.
* @param testCases A mutable list of `TestCaseGeneratedByLLM` objects representing the test cases to be compiled.
* @param workingDir The path of the directory that contains package directories of the code to compile
* @return A `TestCasesCompilationResult` object containing the overall compilation success status and a set of compilable test cases.
*/
fun compileTestCases(
Expand Down Expand Up @@ -47,6 +48,7 @@ abstract class TestCompiler(libPaths: List<String>, junitLibPaths: List<String>)
*
* @param path The path of the code file to compile.
* @param projectBuildPath All the directories where the compiled code of the project under test is saved. This path is used as a classpath to run each test case.
* @param workingDir The path of the directory that contains package directories of the code to compile
* @return A pair containing a boolean value indicating whether the compilation was successful (true) or not (false),
* and a string message describing any error encountered during compilation.
*/
Expand Down

0 comments on commit 51b9357

Please sign in to comment.