Unit test of JS code using Qunit

Source: Internet
Author: User

Reference Blog Address http://www.woiweb.net/how-to-test-your-javascript-code-with-qunit.html

Official Address http://qunitjs.com/

1. Create a qunit.html file to add the official CDN Load test Framework

<! DOCTYPE html>

  

The last project.js introduced is the file to be tested.

The last tests.js introduced is the test case file

2, the test case writing

Let's write a sample to be tested, which is a method of judging if it is even.

Project.jsfunction IsEven (val) {    return val% 2 = = = 0;}

3. Write test

Tests.js
Test (' IsEven () ', function () { ok (isEven (0), ' Zero is an even number '); Ok (IsEven (2), ' is ', '); Ok (IsEven ( -4), ' So are negative four '); Ok (!iseven (1), ' one is not a even number '); Ok (!iseven ( -7), ' Neither is negative seven ');})

Unit test of JS code using Qunit

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.