zoukankan      html  css  js  c++  java
  • javascript 的 jasmine 的測试语句

    首先建立环境场景:
    一般三个文件夹
    lib jasmine的系统文件存放文件夹
    spec 写測试用例的文件夹
    src 存放源码的文件夹(被測对象)
    specRunner.html 測试入口文件。


    入口文件内容:
    --------------------------
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
      "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
      <title>Jasmine Spec Runner</title>


        <link rel="shortcut icon" type="image/png" href="lib/jasmine-core/jasmine_favicon.png">
        <link rel="stylesheet" type="text/css" href="lib/jasmine-core/jasmine.css"> 


        <script type="text/javascript" src="lib/jasmine-core/jasmine.js"></script>
        <script type="text/javascript" src="lib/jasmine-core/jasmine-html.js"></script>
        <script type="text/javascript" src="lib/jasmine-core/boot.js"></script>


      <!-- include source files here... -->
      <script type="text/javascript" src="js_file_要測试的源码.js"></script>


      <!-- include spec files here... -->
      <script type="text/javascript" src="spec/Spec測试用例文件.js"></script>


      <script type="text/javascript">
        (function() {
          var jasmineEnv = jasmine.getEnv();
          jasmineEnv.updateInterval = 1000;


          var htmlReporter = new jasmine.HtmlReporter();


          jasmineEnv.addReporter(htmlReporter);


          jasmineEnv.specFilter = function(spec) {
            return htmlReporter.specFilter(spec);
          };


          var currentWindowOnload = window.onload;


          window.onload = function() {
            if (currentWindowOnload) {
              currentWindowOnload();
            }
            execJasmine();
          };


          function execJasmine() {
            jasmineEnv.execute();
          }


        })();
      </script>


    </head>


    <body>
    </body>
    </html>
    --------------------------


    在 spec 文件夹中,写个測试用例。写例如以下内容:
    -------------------------
    describe("This is an exmaple suite", function() {
      it("contains spec with an expectation", function() {
        expect(true).toBe(true);
        expect(false).toBe(false);
        expect(false).not.toBe(true);
      });
    });
    -------------------------
    測试三个用例演示样例。
    1,true == true 为通过
    2。false == false 为通过
    3,false != true 为通过


    此时这个用例通过。


    參考:

    https://github.com/pivotal/jasmine

  • 相关阅读:
    应用服务器安装
    datasnap的线程池
    压缩OLEVARIANT数据
    服务端日志记录
    提交主从表的多个已经修改的数据
    MySQL与PostgreSQL相比哪个更好?
    Vue入门常用指令详解
    Laravel模型事件的实现原理详解
    Git 遇到了 early EOF indexpack failed 问题
    Laravel 代码开发最佳实践
  • 原文地址:https://www.cnblogs.com/gavanwanggw/p/7371669.html
Copyright © 2011-2022 走看看