Topic 1 Question 447
A developer is working on a project that requires regular updates to a web application’s backend code. The code is stored in AWS CodeCommit. Company policy states that all code must have complete unit testing and that the test results must be available for access.
The developer needs to implement a solution that will take each change to the code repository, build the code, and run unit tests. The solution also must provide a detailed report of the test results.
Which solution will meet these requirements?
Configure AWS CodeDeploy to deploy code from CodeCommit and to run unit tests. Send the test results to Amazon CloudWatch metrics to view reports.
Configure Amazon CodeWhisperer to create the code and to run unit tests. Save the test results in an Amazon S3 bucket to generate reports.
Configure AWS CodeBuild to build the code and to run unit tests. Use test reporting in CodeBuild to generate and view reports.
Create AWS Lambda functions that run when changes are made in CodeCommit. Program the Lambda functions to build the code, run unit tests, and save the test results to a Lambda layer.
ユーザの投票
コメント(1)
- 正解だと思う選択肢: C
CodeBuild compiles the code, runs tests, and produces artifacts. It supports test reporting features, which provide detailed insights into test results. Developers can view reports directly in the AWS Management Console. CodeBuild integrates seamlessly with CodeCommit and other AWS CI/CD tools.
👍 1LingZ2025/02/19
シャッフルモード