English 中文(简体)
在专门功能测试中增加DSL层?
原标题:Add DSL layer in ui functional test?

In functional test case, directly call ui operation and do validation is not easy to be maintenance, not easy to handle ui changes. Someone suggest to add a middle layer (DSL layer) to resolve it: changer will keep implementing the DSL, and Domain specialist (maybe Test Developer) use DSL to enrich the testcase. Do you use this is a good idea or not? Do you use this layer in your functional test?

最佳回答

这是一个好的想法,应用得很好,在实践中表现良好。 更快地测试病例(工业经验为10x),提高测试覆盖面,允许采用不同的测试框架。 See e.g. industry case reported at http://www.thinkmind.org/index.php?view=article&articleid=valid_20115_20_40049

问题回答

暂无回答




相关问题
Treetop: How to make combined rule?

I want to make a simple JSP parser by using Treetop. Now, I have the following problem: My basic grammar for starting is: grammar Jspgrammar rule jspToken <% end rule ...

Language neutral custom tool

I m working on a DSL tool, and for this tool, there exists a custom code generation tool that creates output files. Currently, this tool is registered with C# using a RegistrationAttribute on the ...

How should I construct a finance DSL?

I ve decided to build a database tracking the credit card offers I get in the mail, and one confounding factor has been how to represent the offers. With minimum finance charges and variable rates and ...

How do I build a domain-specific query language?

I have a biology database that I would like to query. There is also a given terminology bank I have access to that has formalizable predicates. I would like to build a query language for this DB using ...

Stop and continue while evaluation an expression tree

At the office, we ve applied simple Domain Specific Languages (DSLs) to several problem domains we encountered. Basically, we parse (lex/yacc) the custom script into an expression tree. Every node ...

Language to create flowcharts [closed]

This seems like something which must have been answered before, but I can t find anything appropriate in the question archives. Basically, I m looking for a little Domain Specific Language to create ...

热门标签