Test Case Generation Tools [closed]

2019-03-08 15:34发布

I am looking for tools or frameworks that can either generate test cases or aid in software testing.

So far I have found the following:

These tools apply mostly to Java, but am also looking for .NET or other languages.

Can anyone propose other tools

3条回答
闹够了就滚
2楼-- · 2019-03-08 15:56

Dotnet Testdatagenerator NBuilder

查看更多
ら.Afraid
3楼-- · 2019-03-08 15:57

Language agnostic all-pair testing

We have used PICT as a tool to successfully minimize the amount of testcases while still being reasonable confident to have most cases covered.

the reasoning behind all-pairs testing is this: the simplest bugs in a program are generally triggered by a single input parameter. The next simplest category of bugs consists of those dependent on interactions between pairs of parameters, which can be caught with all-pairs testing.1 Bugs involving interactions between three or more parameters are progressively less common2, whilst at the same time being progressively more expensive to find by exhaustive testing, which has as its limit the exhaustive testing of all possible inputs.

查看更多
Bombasti
4楼-- · 2019-03-08 16:07

To add to the list above, if you're looking at Pairwise (Combinatorial) test case generation, the complete, (usually) updated and an EXTENSIVE list of ALL such tools that let you generate test-cases, alongside analysis of the effectiveness of each, research papers et. al. can be found at http://www.pairwise.org/

查看更多
登录 后发表回答