How have Guava unit tests been generated automatically?

Posted by dzieciou on Programmers See other posts from Programmers or by dzieciou
Published on 2012-11-01T09:38:59Z Indexed on 2012/11/01 11:14 UTC
Read the original article Hit count: 261

Guava has unit test cases automatically generated:

Guava has staggering numbers of unit tests: as of July 2012, the guava-tests package includes over 286,000 individual test cases. Most of these are automatically generated, not written by hand, but Guava's test coverage is extremely thorough, especially for com.google.common.collect.

How they were generated? What techniques and technologies were used to design and generate them?

© Programmers or respective owner

Related posts about java

Related posts about unit-testing