使用bamboo测试框架
程序员文章站
2022-05-19 17:39:27
...
Bamboo测试框架好用是好用,但是有一套规则,必须按这套规则写,才能顺利地跑起来。
下面是几大规则:
关于telescope测试工具的资料:
http://telescope.luaforge.net/
http://telescope.luaforge.net/docs/modules/telescope.html
贴个示例代码:
下面是几大规则:
- 测试代码必须放在app目录的tests目录下;
- 测试代码的文件必须取名 *_tests.lua;
- 测试代码文件必须引入测试框架:local testing = require 'bamboo.testing';
- 测试代码中使用telescope lua测试工具的结构,所以要学习telescope,不过也很简单;
- 可以在测试代码中创建伪造的浏览器对象,使用这个对象的方法。
关于telescope测试工具的资料:
http://telescope.luaforge.net/
http://telescope.luaforge.net/docs/modules/telescope.html
贴个示例代码:
local testing = require 'bamboo.testing' context("TestApp Testing", function() context("interaction", function() test("do it", function() local tester = testing.browser("tester") -- click assumes you want a 200 all the time and just returns -- the response it got local resp = tester:click("/") ptable(resp) resp = tester:click('/hello/') ptable(resp) end) end) end)
上一篇: 使用bamboo测试框架
下一篇: 别让好想法埋没:如何进行APP开发?
推荐阅读
-
ThinkPHP5框架中使用JWT的方法示例
-
从零开始搭建前后端分离的NetCore2.2(EF Core CodeFirst+Autofac)+Vue的项目框架之七使用JWT生成Token(个人见解)
-
Python单元测试框架unittest使用方法讲解
-
PHP随机生成中文段落示例【测试网站内容时使用】
-
nodejs6下使用koa2框架实例
-
从零开始搭建前后端分离的NetCore2.2(EF Core CodeFirst+Autofac)+Vue的项目框架之十一Swagger使用一
-
python django框架中使用FastDFS分布式文件系统的安装方法
-
java单元测试框架都有哪些(单元测试框架的作用)
-
在Python程序和Flask框架中使用SQLAlchemy的教程
-
使用Python的Flask框架构建大型Web应用程序的结构示例