| Projects on Google Code | Results 1 - 10 of 75 |
The purpose of the project: allow developers to easily compare mocking frameworks available for .NET, and make an informed decision when picking one up.
It provides a unified set of tests to showcase [http://code.google.com/p/moq/ Moq], [http://sourceforge.net/projects/nmock2/ NMock2], [http://a...
Test My Enterprise is a suite of tools to provide enterprise system and infrastructure testing capabilities.
==Description==
A .Net dynamic fake framework for creating all types of fake objects, mocks, stubs etc.
* Easier semantics, all fake objects are just that - fakes - the use of the fakes determines whether they're mocks or stubs.
* Context aware fluent interface guides the developer.
* Fu...
Mock framework for Python, which has taken influence from jMock.
=Installing=
Check out the code and do: python setup.py install
Best way to see the usage is to see the test code test_yamf.py
=Basic usage=
To set basic expectation that doSomething must be called:
{{{
m = yamf.Mock()
m....
*jqMock* is a lightweight javascript Mock Framework for the [http://code.google.com/p/jqunit/ jqUnit testing framework]. jqMock allows functions in dependent functions such as native alert dialogs to be mocked, so that your own code can be tested in isolation.
jqMock has comprehensive expectation...
=Mock Objects Samples=
Languages: Java, .Net, Ruby, Python, PHP, AS3.
Mock objects libraries: jmock, easymock, mockito, mock4as...
[http://code.google.com/p/mocksamples/wiki/ForContributors Participate!] Share your solution in this project.
=The Samples=
The following samples have been se...
mockobjects,
samplemocks,
mock,
testing,
unittest,
mocklibraries,
TDD,
mocksamplecode,
mockhelloworld,
sample,
libraries,
helloworld
= MockitoPP C++ Mocking Framework =
A C++ mocking framework inspired by the ideas developed in the original [http://code.google.com/p/mockito/ Mockito mocking framework] for Java written by [http://monkeyisland.pl/ Szczepan Faber, et al]. The purpose is to provide similar construction semantics for...
amok (pronounced 'amok' not 'A Mok') is a user friendly mocking framework named after the [http://www.theworldwidegourmet.com/recipes/amok-fish/ signature dish] of Cambodia.
==Example==
{{{
var mock = amok.Mock(MyClass);
mock.should_receive("getFoo").with_args("someValue", String, Number).times(...
!StubIt helps you write tests for your system, taking out the hassle of ensuring the availability of third party systems your code may depend upon.
Very often when developing systems, being it large or small systems, one needs to integrate with various third party systems. Often, this takes the f...
= 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...