Use nunit in Visual Studio

Source: Internet
Author: User

Nunit is a very easy-to-use unit testing tool. It is very convenient to use nunit in Visual Studio for unit testing.

1. Download nunit

Download and install the latest nunit version from the nunit website.

2. Download The nunit plug-in Visual Studio.

The testdriven.net plug-in I used is easy to use.

You can download the personal free version on its official website.

 

This completes the entire installation process, which is relatively simple. The following is a simple example.

Create a C # project and add

 

  using  system;  using  system. collections. generic;  using  system. LINQ;  using  system. text;  using  nunit. framework;  namespace  test {[testfixture]  class  worker { bool  getprice () { return   true  ;} [Test]  Public   void  testgetprice () {assert. istrue (getprice () ;}}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.