Monthly Archives: December 2018

A brief overview of unit tests

UNIT TESTING Unit testing is the process in which tiny testable parts of a program, referred to as units,are independently tested for expected functionality It could be either automated or manually done There is a lot of different approaches to testing an application   Different kinds of Test Approaches -Acceptance testing         … Read More »

Dependency Injection Options

Transient Shortest lifespan : An instance will be created every time one is requested. Each request an instance of given class,the framework will give them each their own instance and not share anything between them   Scoped A single instance will be created for each “scope”.In ASP.NET Core MVC,the “scope” is almost always the current… Read More »