Is there any free library to automatically generate test cases for .net?

Desdentao

New member
Joined
Apr 30, 2022
Messages
3
Programming Experience
3-5
I thought that Visual Studio has this built in.
 
Oh. I see now that I've followed the link. He's looking for not just the stubs for the unit tests, but for the tests to actually provide appropriate inputs and assertions to maximize code coverage of all the branches of code within the code being tested. The free Microsoft Research project Pex has become IntelliTest and integrated into Visual Studio. Unfortunately, you need to have the paid editions of Visual Studio to get IntelliTest.
 
Effectively, Pex, which was previously free, has become IntelliTest and is only available in the Enterprise version of Visual Studio. I was wondering, if there is any library or tool, made by the community that is totally free and does the same thing as Intellitest.
 
I've had a look at SpecFlow but it's not what I'm looking for, I'm looking for something like Intellitest, which generates coverage tests.
 
... because writing coverage tests is drudgery.
 
Back
Top Bottom