Projects tagged ‘unit-testing’


[98 total ]

849 Users
   

JUnit is a Java testing framework. Since testing is not closely integrated with development, it prevents you from measuring the progress of development. You can't tell when something starts working or ... [More] when something stops working. Using JUnit you can cheaply and incrementally build a test suite that will help you measure your progress, spot unintended side effects, and focus your development efforts. [Less]
Created over 3 years ago.

390 Users
   

NUnit is a unit testing framework for all .NET languages on any .NET platform. It was ported from JUnit.
Created over 3 years ago.

204 Users
   

RSpec is a BDD tool and a framework which provides programmers with a Domain Specific Language to describe the behaviour of Ruby code with readable, executable examples that guide you in the design ... [More] process and serve well as both documentation and tests. [Less]
Created over 3 years ago.

192 Users
   

In the last decade, PHP has developed from a niche language for adding dynamic functionality to small websites to a powerful tool making strong inroads into large-scale Web systems. Critical business ... [More] logic like this needs to work correctly. But how do you ensure that it does? You test it, of course. To make code testing viable, good tool support is needed. This is where PHPUnit comes into play. [Less]
Created over 3 years ago.

78 Users
   

MbUnit is an advanced xUnit framework. It is easily extensible and offers features that no other xUnit framework does. It has been described as NUnit on crack. One of the most important of it's unique features is parameterized unit tests.
Created over 3 years ago.

60 Users
   

SimpleTest is a unit tester, Web tester, and dynamic mock objects framework for PHP. The test structure is similar to JUnit/PHPUnit. Used as a Web tester, you can navigate sites and submit forms as if you were using a Web browser.
Created over 3 years ago.

39 Users
   

Moq (pronounced "Mock-you" or just "Mock") is the only mocking library for .NET developed from scratch to take full advantage of .NET 3.5 (i.e. Linq expression trees) and C# 3.0 features (i.e. lambda ... [More] expressions) that make it the most productive, type-safe and refactoring-friendly mocking library available. And it supports mocking interfaces as well as classes. Its API is extremely simple and straightforward, and doesn't require any prior knowledge or experience with mocking concepts. [Less]
Created about 1 year ago.

35 Users
   

EasyMock provides Mock Objects for interfaces in JUnit tests by generating them on the fly using Java's proxy mechanism. Due to EasyMock's unique style of recording expectations, most refactorings ... [More] will not affect the Mock Objects. So EasyMock is a perfect fit for Test-Driven Development. [Less]
Created over 3 years ago.

34 Users
   

CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI-based for supervised tests.
Created over 3 years ago.

29 Users

DbUnit is a JUnit extension (also usable with Ant) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to ... [More] avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage. DbUnit has the ability to export and import your database data to and from XML datasets. Since version 2.0, DbUnit can works with very large dataset when use in streaming mode. DbUnit can also helps you to verify that your database data match expected set of values. [Less]
Created over 2 years ago.