For reference, I'm looking for some open source projects with unit tests.
Edit - Surely there must be more!
|
2
|
For reference, I'm looking for some open source projects with unit tests. Edit - Surely there must be more!
|
|||
|
|
|
|
Mark Pilgrim's Feedparser bills itself thusly:
|
||
|
|
|
|
The Factor programming language has around 42 thousand lines in its test files. |
||
|
|
|
|
My project JMockit (a toolkit for developer testing, particularly for unit testing with mocks) contains a good number of tests, mostly using JUnit 4. This sample test suite, for example, contains 150+ unit tests. |
||
|
|
|
|
The NUnit unit testing framework has code to test itself. I'm sure the same is true for all other unit testing frameworks. |
||
|
|
|
|
All the Selenium tools have good amount of tests. Selenium core and Selenium IDE have jsunit tests and Selenium RC has JUnit tests. The source code can be found here |
||
|
|
|
|
If you consider CodePlex projects to be open source, then look at the Service Factory. There were over 700 tests in there when I extended the source last year. |
||
|
|
|
|
Ruby On Rails has lots of unit tests, and most of the popular extensions (plugins/gems) have unit tests as well. |
||
|
|
|
|
Spring is loaded with JUnit tests. |
||
|
|
|
Many of the Boost libraries have unit tests, so do many of the implementations of Google Protocol Buffers |
||
|
|
|
|
I think you will find some Open Source projects which had some type of unit testing. But watch out for what you are trying to do with that information. Remember an Open Source project is a collaborative work between developers. Code goes around back and for and several people take a look at it before the code is even compiled in for final release. So, even when unit testing is not predominant in most open source projects, the quality of the code is guaranteed by the peer review/testing done by several people at the time. On the other hand, on common enterprise projects you have a group of developers, each one working in a specific part of code and interacting between other developers methods and functions. Since only a few very busy people are looking at the big picture Unit Tests are a must on those projects. So, when a developer put something new, we needs to be aware that we does not broke somebody else code. On open source project, that somebody will probably send you a nasty e-mail as soon as he installed your patch. Just be aware that both techniques should not be compared side by side. |
||||
|
|
|
The ASP.NET MVC Project, whose source code can be seen on codeplex, has a very complete set of unit tests. It can even be browsed online :-) |
||
|
|
|
|
A few examples:
|
|||
|
|
|
|
SQLite has a very comprehensive test suite. It may not be unit testing, per se, but it is quite comprehensive.
|
||||||||
|
|
|
Chestnut Package Manager (advertisement) |
||
|
|
|
|
OpenJDK has a very comprehensive set of conformance tests that are required to pass in order to be considered a valid implementation of Java. :-) |
||
|
|