Skip to content

Commit 1a5b429

Browse files
committed
Re-run spotless formatter
1 parent cdc07d2 commit 1a5b429

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

src/main/java/io/github/lambdatest/gradle/AppUploader.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ public AppUploader(String username, String accessKey, String appFilePath) {
4040
/**
4141
* Uploads the application file asynchronously to LambdaTest.
4242
*
43-
* <p>Implementation Note: Uses CompletableFuture to perform the upload asynchronously, allowing parallel processing of other tasks.</p>
43+
* <p>Implementation Note: Uses CompletableFuture to perform the upload asynchronously, allowing
44+
* parallel processing of other tasks.
4445
*
4546
* @return A CompletableFuture that resolves to the uploaded application's ID
4647
*/

src/main/java/io/github/lambdatest/gradle/LambdaTestTask.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ public class LambdaTestTask extends DefaultTask {
5050
* Executes the LambdaTest task, which includes uploading the application and test suite,
5151
* followed by test execution on the LambdaTest platform.
5252
*
53-
* <p>Implementation Note:This method handles the task execution in three main phases: 1. Asynchronous upload of the application using {@link AppUploader#uploadAppAsync()} 2. Asynchronous upload of the test suite using {@link TestSuiteUploader#uploadTestSuiteAsync()} 3. Test execution with {@link TestExecutor#executeTests(Map)}</p>
53+
* <p>Implementation Note:This method handles the task execution in three main phases: 1.
54+
* Asynchronous upload of the application using {@link AppUploader#uploadAppAsync()} 2.
55+
* Asynchronous upload of the test suite using {@link TestSuiteUploader#uploadTestSuiteAsync()}
56+
* 3. Test execution with {@link TestExecutor#executeTests(Map)}
5457
*
5558
* @throws RuntimeException if any upload or test execution fails
5659
*/

src/main/java/io/github/lambdatest/gradle/TestExecutor.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ public TestExecutor(
5353
/**
5454
* Executes the tests on LambdaTest with the specified parameters.
5555
*
56-
* <p>Implementation Note: This method constructs the test capabilities and sends them to either {@link Constants#BUILD_URL} or {@link Constants#FLUTTER_BUILD_URL} based on whether it's a Flutter or standard application.</p>
56+
* <p>Implementation Note: This method constructs the test capabilities and sends them to either
57+
* {@link Constants#BUILD_URL} or {@link Constants#FLUTTER_BUILD_URL} based on whether it's a
58+
* Flutter or standard application.
5759
*
5860
* @param params Map of additional test execution parameters
5961
* @throws IOException if there's an error in communication with the LambdaTest API

src/main/java/io/github/lambdatest/gradle/TestSuiteUploader.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ public TestSuiteUploader(String username, String accessKey, String testSuiteFile
3333
/**
3434
* Uploads the test suite file asynchronously to LambdaTest.
3535
*
36-
* <p>Implementation Note: Uses CompletableFuture to perform the upload asynchronously, allowing parallel processing of other tasks.</p>
36+
* <p>Implementation Note: Uses CompletableFuture to perform the upload asynchronously, allowing
37+
* parallel processing of other tasks.
3738
*
3839
* @return A CompletableFuture that resolves to the uploaded test suite's ID
3940
*/

src/main/java/io/github/lambdatest/gradle/UploaderUtil.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ private UploaderUtil() {
2929
/**
3030
* Uploads a file to LambdaTest and returns its ID.
3131
*
32-
* <p>Implementation Note: This method sends the file to {@link Constants#API_URL} and handles the multipart form data construction and response parsing.</p>
32+
* <p>Implementation Note: This method sends the file to {@link Constants#API_URL} and handles
33+
* the multipart form data construction and response parsing.
3334
*
3435
* @param username The LambdaTest account username
3536
* @param accessKey The LambdaTest account access key
3637
* @param filePath The path to the file to be uploaded
3738
* @return The ID of the uploaded file
3839
* @throws IOException if there's an error during file upload or response parsing
39-
*
4040
*/
4141
public static String uploadAndGetId(String username, String accessKey, String filePath)
4242
throws IOException {

0 commit comments

Comments
 (0)