Name the namespace used for Microsoft Visual Studio Unit Testing ?
Namespace used for Microsoft Visual Studio Unit Testing –Microsoft.VisualStudio.TestTools.UnitTesting
Example in C# :
using System; using System.Text; using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace TestProjectMath { [TestClass] public class UnitTestMath { } }
Shadowing in .NET When a method is defined in base class are not overridable and one needs to provide different implementation for the same in derived class. […]
ASP.NET Application Deployment Once an application has been developed and tested ,application is ready for deployment to client machines. The goal of deployment is the […]
Process for Implementing Triggers and Timers An UpdatePanel control on your page will update (through a partial-page postback operation) when a control that it contains […]