Question

Is there such a thing as unit test generation? If so...

...does it work well?

...What are the auto generation solutions that are available for .NET?

...are there examples of using a technology like this?

...is this only good for certain types of applications, or could it be used to replace all manually written unit testing?

Was it helpful?

Solution

Take a look at Pex. Its a Microsoft Research project. From the website:

Pex generates Unit Tests from hand-written Parameterized Unit Tests through Automated Exploratory Testing based on Dynamic Symbolic Execution.

OTHER TIPS

I believe there's no point in Unit test generation, as far as TDD goes.

You only make unit tests so that you're sure that you (as a developer) are on track w/ regards to design and specs. Once you start generating tests automatically, it loses that purpose. Sure it would probably mean 100% code coverage, but that coverage would be senseless and empty.

Automated unit tests also mean that your strategy is test-after, which is opposite of TDD's test-before tenet. Again, TDD is not about tests.

That being said I believe MSTest does have an automatic unit-test generation tool -- I was able to use one with VS2005.

Updated for 2017:

Unit Test Boilerplate Generator works for VS 2015-2017 and is being maintained. Seems to work as advertised.

I created 'ErrorUnit' and it generates MSTest or NUnit unit tests from your paused Visual Studio, or from your error logs; Mocking class variables, Method Parameters, and EF Data access so far. (http://ErrorUnit.com)

No Unit Test generator can do everything; Unit Tests are classically separated into three parts Arrange, Act and Assert; the Arrange portion is the largest part of a unit test and it sets up all the preconditions to a test, mocking all the data that is going to be acted upon in the test, the Act portion of an Unit Test is usually one line and activates the portion of code being tested passing in that data, and finally the Assert portion of the test takes the results of the Act portion and verifies that it met expectations ( can be zero lines when just making sure there is no error).

Unit Test generators generally can only do the 'Arrange', and 'Act' portions on unit test creation; however unit test generators generally do not write 'Assert' portions as only you know what is correct and what is incorrect for your purposes. So some manual entry/extending of Unit Tests is necessary for completeness.

I agree with Jon. Certain types of testing, like automated fuzz testing, definitely benefit from automated generation. While you can use the facilities of a unit testing framework to accomplish this, this doesn't accomplish the goals associated with good unit test coverage.

Parasoft .TEST has a functionality of tests generation. It uses NUnit framework for tests description and assertions evaluation.

It is possible to prepare a regression tests suite by automated generating scenarios (constructing inputs and calling tested method) and creating assertions which are based on the current code base behavior. Later, after code base under tests evolves, assertions indicates regressions or can be easily recorded again.

I've used NStub to stub out test for my classes. It works fairly well.

I've used tools to generate test cases. I think it works well for higher-level, end-user oriented testing. Stuff that's part of User Acceptance Testing, more so than pure unit testing.

I use the unit test tools for this acceptance testing. It works well.

See Tooling to Build Test Cases.

There is a commercial product called AgitarOne (www.agitar.com) that automatically generates JUnit test classes.
I haven't used it so can't comment on how useful it is, but if I was doing a Java project at the moment I would be looking at it.

I don't know of a .net equivalent (Agitar did one announce a .net version but AFAIK it never materialised).

I know this thread is old but for the sake of all developpers, there is a good library called unit test generator:

https://visualstudiogallery.msdn.microsoft.com/45208924-e7b0-45df-8cff-165b505a38d7

Good dev

GennyMcGenFace creates a unit test for each function in your class and generates objects with random words/values in each parameter.

  • Generate unit tests for each function in your class
  • Figures out valid randomly generated values for the paramater inputs and the returns statement.
  • Mockable interfaces return valid randomly generated values
  • Generate unit tests for each function in your class
  • Imports all the needed namespaces into your test class

It helps in setting up your unit tests, especially if you have input objects with lots of parameters.

The unit test will look something like this

Selenium generates unit tests from user commands on a web page, pretty nifty.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top