Member-only story
.NET Series-2: Adding and Running The “Unit Tests” to the “Build stage” for the .NET Application in the AWS CodePipeline.
We’ll add a “Unit Tests
” to the “Build stage” for the .NET 8.0 the ASP.NET Core project, and run unit tests in the AWS CodePipeline CI/CD Pipeline by Using the AWS CodeBuild. We’ll examine the results of the unit tests in the “Report Group”
tab in the AWS CodeBuild and in the “pipeline logs”
in the AWS CodePipeline.

Topics we will cover:
1. Adding Unit Tests To Our Build
2. Adding Unit Tests to the .NET Project
3. Adding Unit Testing Reporting to the “buildspec.yml File
4. Pushing the “buildspec.yml” File To The Remote Repository
5. Running Unit Tests In The CI/CD Pipeline
6. Checking The Result of The Unit Tests
7. As a result
8. Next post: “.NET Series-3: Deploying a .NET Application to Linux EC2 By Using AWS CodeDeploy in the AWS CodePipeline”.
9. References
If you like the article, I will be happy if you click the Medium Follow button to encourage me to write more, and not miss future articles.
Your clapping, following, or subscribing helps my articles to reach a broader audience. Thank you in advance for them.
1. Adding Unit Tests To Our Build
Unit testing is the process where you test the smallest functional unit of code. (1) Tests a specific section of code to ensure the code does what it is expected to do. The unit testing is performed by software developers during the development phase. (2)
In my previous article, we installed the dependencies necessary for a .NET 8.0 project to run on the Windows OS and created the ASP.NET Core project with the ASP.NET web API template. Then, we built and ran the .NET project on the local Windows OS
PC and checked it on the web browser. After these, we created a CI/CD pipeline in the AWS…