Posts

Showing posts with the label #mvc

Complete Dot Net Topics to be Professional Dot Net Developer

Image
Preparing for .NET interview can be little hard because you do not know what to expect, especially if you are New to the .NET development. With this article, It gives you a platform to learn programs in .NET language, you get some basic idea and become job ready. Following is a list of important .NET developer interview questions and topics that frequently are asked. Dot Net Topics Latest Updated - FREE PDF Download Link FRAMEWORK CONCEPTS .NET Framework introduction Framework Components Types of Applications developed using MS.NET Base Class Library/Framework Class Library Namespaces, CLR MS.NET Memory Management / Garbage Collection CTS,CLS JIT Compilers C# Overview of C# Datatypes & Variables Declaration Implicit and Explicit Casting Enum and Constant Control Structures Arrays,Methods,Out and Parameters OOPS Classes Objects Encapsulation Inheritance Polymorphism Abstract Interfaces Delegates EXCEPTION HANDLING ...

Unit Testing in ASP.NET MVC - Easy Guide for Beginners and Professional

Image
What is Unit Testing ?   Unit tests are definitely becoming a need-to-have skill for developers to confirm their code does what it should for production.  1.In real world every application comprises of many modules. For instance consider a simple E-Commerce application may comprises of Inventory Module, Customer management Module, Order module etc.  2. Every Module is made of using more than one classes. 3. Every class exposes many functionalities in the form of functions. In Unit Testing we test these functions individually in an automated manner. Get Easiest & Simplest idea about ASP.NET MVC What are some general guidelines for Unit Testing?   Make sure you unit tests tests what needs to be unit tested…and nothing more.  If you have a simple POCO (Plain Old CLR Object) with a list of properties with no implementation or business rules behind it, I’m guessing you don’t need to test it. Your code should be unit tes...