|
12 | 12 | import org.gradle.api.tasks.TaskAction;
|
13 | 13 |
|
14 | 14 | /**
|
15 |
| - * Main task class for the LambdaTest Gradle plugin that handles test execution on the LambdaTest platform. |
16 |
| - * This task manages the upload of applications and test suites, followed by test execution with specified configurations. |
| 15 | + * Main task class for the LambdaTest Gradle plugin that handles test execution on the LambdaTest |
| 16 | + * platform. This task manages the upload of applications and test suites, followed by test |
| 17 | + * execution with specified configurations. |
17 | 18 | *
|
18 |
| - * <p>This task coordinates between {@link AppUploader}, {@link TestSuiteUploader}, and {@link TestExecutor} |
19 |
| - * to manage the complete test execution lifecycle.</p> |
| 19 | + * <p>This task coordinates between {@link AppUploader}, {@link TestSuiteUploader}, and {@link |
| 20 | + * TestExecutor} to manage the complete test execution lifecycle. |
20 | 21 | */
|
21 | 22 | public class LambdaTestTask extends DefaultTask {
|
22 | 23 |
|
@@ -49,11 +50,10 @@ public class LambdaTestTask extends DefaultTask {
|
49 | 50 | * Executes the LambdaTest task, which includes uploading the application and test suite,
|
50 | 51 | * followed by test execution on the LambdaTest platform.
|
51 | 52 | *
|
52 |
| - * @implNote This method handles the task execution in three main phases: |
53 |
| - * 1. Asynchronous upload of the application using {@link AppUploader#uploadAppAsync()} |
54 |
| - * 2. Asynchronous upload of the test suite using {@link TestSuiteUploader#uploadTestSuiteAsync()} |
55 |
| - * 3. Test execution with {@link TestExecutor#executeTests(Map)} |
56 |
| - * |
| 53 | + * @implNote This method handles the task execution in three main phases: 1. Asynchronous upload |
| 54 | + * of the application using {@link AppUploader#uploadAppAsync()} 2. Asynchronous upload of |
| 55 | + * the test suite using {@link TestSuiteUploader#uploadTestSuiteAsync()} 3. Test execution |
| 56 | + * with {@link TestExecutor#executeTests(Map)} |
57 | 57 | * @throws RuntimeException if any upload or test execution fails
|
58 | 58 | */
|
59 | 59 | @TaskAction
|
|
0 commit comments