Summary In this post I would like to show you how to go about adding Integration tests to your Asp.Net Core Web API project using Xunit.net. Pre-requisites Asp.Net Core SDK and Runtime installed Why I would want to add Integration testing to my Web API Integration tests are a great way to test infrastructure connectivity […]
Tag: Visual Studio
Adding Swagger to my ASP.Net Core API
I would like to show just how easy it is to add testing and documentation to your Asp.Net Core API using Swagger. The reason I chose Swagger is simply that it is the largest framework of API developer tools for the OpenAPI specific which allows rapid documentation and testing of APIs with great ease. For […]
My Reverie
MyReverie is a new simple side project I am working on. The idea is to build a goal tracking solution and be able to set target dates and milestone markers against those goals to track progress. I will routinely push new updates to the GitHub repo : MyReverie I have a rough idea of some […]
Getting Started with Azure Service Fabric
I wanted to show a simple example of using Azure Service Fabric to create a reliable & scalable micro service that would perform addition functionality on an input string for example “1+1” using a console application as the client. The string is parsed out to two integers and calculates the result. Obviously this is extremely […]
ASP.NET Core Web API with Docker
This post simply demonstrates creating a simple service called ‘AdditionMicroservice’ that adds two numbers provided as query string parameters. I will add this code to my GitHub account under Getting started with Microservices repo Pre-requisites: Docker for Windows 1) Create a new ASP.NET Core Web Application project Select the Web API Template Check the Enable […]