| Projects on Google Code | Results 1 - 10 of 16 |
JMockit allows developers to write unit and integration tests without the testability issues typically found with other mocking tools.
Tests can easily be written that will mock `final` classes and methods, `static` methods, constructors, and so on. There are no limitations.
The JMockit mocking ...
Adding in all the features I wished NMock had build in.
==Mocking Events==
{{{
Stub.On(mock_with_events).EventAdd("eventname", Is.Anything).Will(Remember.EventAdd);
Stub.On(mock_with_events).EventRemove("eventname", Is.Anything).Will(Remember.EventRemove);
// perform action that makes someo...
qMock is a standalone, lightweight mocking framework that facilitates integration testing for !JavaScript programs.
===var ninja = new Mock();===
_Please note it is useful, but not essential, to have some experience of testing code in a TDD manner to use qMock_
qMock is a '*expect-run-verif...
NaturalSpec is based on NUnit and completely written in F# - but you don't have to learn F# to use it.
== Tutorials ==
* [http://www.navision-blog.de/2009/02/23/introducing-naturalspec-a-dsl-for-testing-part-i/ Introducing NaturalSpec – A Domain-specific language (DSL) for testing – Part I]
...
Welcome to *Google C++ Mocking Framework*!
Inspired by [http://www.jmock.org/ jMock], [http://www.easymock.org/ EasyMock], and [http://code.google.com/p/hamcrest/ Hamcrest], and
designed with C++'s specifics in mind, Google C++ Mocking Framework
(or *Google Mock* for short) is a library for wri...
Contributed features and third-party integration for Moq.
= Joining the Moq Contrib Project =
Just send an email to the [mailto:moqdisc@googlegroups.com Moq Discussions] list asking to join.
{{{
Condition, v. i. [imp. & p. p. Conditioned; p.
pr. & vb. n. Conditioning.]
1. To make terms; to stipulate.
[1913 Webster]
}}}
*Condition* is an unit-testing framework for Python in the spirit of [http://behaviour-driven.org/ Behavior-Driven Development].
----
The software provided...
MockItNow is a mocking framework for C++. For more details, please look here: http://www.rorydriscoll.com/mockitnow
You can browse the source, or download a zip file with the source, examples and UnitTest++.
= Simple mock objects for java =
CheesyMock is a small library for creating Java mock objects for use in your unit tests with a minimal amount of fuss.
For example, to quickly create a dummy HttpServletRequest, you only need to type
{{{
HttpServletRequest req = Cheesy.mock(HttpServletRequest...
Cpput is a lightweight c++ unit test tools. Implemented with xUnit framework and simple mocking, it is very simple and easy to use, especially for TDD( Test-Driven Development).