JFixture Mockito

A mockito customisation for handling interfaces/abstract classes in JFixture.

License

License

Categories

Categories

Mockito Unit Testing
GroupId

GroupId

com.flextrade.jfixture
ArtifactId

ArtifactId

jfixture-mockito
Last Version

Last Version

2.7.2
Release Date

Release Date

Type

Type

jar
Description

Description

JFixture Mockito
A mockito customisation for handling interfaces/abstract classes in JFixture.
Project URL

Project URL

https://github.com/FlexTradeUKLtd/jfixture

Download jfixture-mockito

How to add to project

<!-- https://jarcasting.com/artifacts/com.flextrade.jfixture/jfixture-mockito/ -->
<dependency>
    <groupId>com.flextrade.jfixture</groupId>
    <artifactId>jfixture-mockito</artifactId>
    <version>2.7.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.flextrade.jfixture/jfixture-mockito/
implementation 'com.flextrade.jfixture:jfixture-mockito:2.7.2'
// https://jarcasting.com/artifacts/com.flextrade.jfixture/jfixture-mockito/
implementation ("com.flextrade.jfixture:jfixture-mockito:2.7.2")
'com.flextrade.jfixture:jfixture-mockito:jar:2.7.2'
<dependency org="com.flextrade.jfixture" name="jfixture-mockito" rev="2.7.2">
  <artifact name="jfixture-mockito" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.flextrade.jfixture', module='jfixture-mockito', version='2.7.2')
)
libraryDependencies += "com.flextrade.jfixture" % "jfixture-mockito" % "2.7.2"
[com.flextrade.jfixture/jfixture-mockito "2.7.2"]

Dependencies

compile (1)

Group / Artifact Type Version
com.flextrade.jfixture : jfixture jar 2.7.2

provided (2)

Group / Artifact Type Version
org.mockito : mockito-all jar [1.8,)
junit : junit jar 4.11

test (1)

Group / Artifact Type Version
org.hamcrest : hamcrest-all jar 1.3

Project Modules

There are no modules declared in this project.

JFixture

JFixture is an open source library based on the popular .NET library, AutoFixture.

Build Status

Description

JFixture is a Java library to assist in the writing of Unit Tests, particularly when following Test Driven Development. It generates types based on the concept of 'constrained non-determinism', which is an implementation of the Generated Value xUnit test pattern.

Overview

A traditional unit test cycle following the method of Triangulation would result in a number of similar looking unit tests that look like 'Tests by example'.

'Tests by example' will contain hard coded values, (String orderId = "ABCD";) in the Arrange or Act phase of a unit test and repeat that value in the Assert phase. This causes tests to read like examples ("The id passed to the logger should be "ABCD"), rather than tests by specification ("The id passed to the logger should be the same id as the Order I've created"). This effect can be reduced by factoring the values into fields or variables, but this just hides the problem rather than fixing it.

To write 'tests by specification' the input shouldn't be known at the time of writing the test, that is, the input should be generated at run time (String id = createId();). This forces us to avoid repeated test cases and triangulate on correct behaviour much quicker. Tests and code are forced to focus on the semantic representation of the code (the Id) rather than the syntactic representation ("ABCD"). In the previous example createId() could return a new UUID so we can't hard code any values in either the test or the production code.

This is called non-determinism.

Ordinarily the thought of non-determinism inside a unit test should invoke fear. We're aware of the perils of using random numbers, threading, file system etc, so creating unit tests with non-deterministic input would seem to go against the grain. This is a valid concern for truly randomised data, but if we constrain the input to be within the same Equivalence Class we can be confident that our input is valid for each test run even though specific values may vary. As an example, if we always generate strings that will never be empty or null these will almost certainly be in the same equivalence class.

This is called constrained non-determinism.

JFixture has been designed to produce input for unit tests following the principle of constrained non-determinism. This allows the developer to focus on the important parts of unit testing rather than choosing arbitrary values for test data.

Implementation

JFixture is an unofficial cousin of the .NET library AutoFixture. It's heavily inspired by the wonderful work produced by the contributors to AutoFixture but with a Java flair. It's not as fully featured as AutoFixture but any .NET developer familiar with the library should feel comfortable using it.

JFixture started off as an internal project developed by FlexTrade UK to fill the gap in Java testing that AutoFixture fills for .NET testing. It's been used internally for a while and a decision was made to open source it for any other Java developers that may find it useful. For this reason there isn't any git commit history prior to open-sourcing because it would be too much work to rewrite history removing any internal references, links, urls etc.

Example Usage

The Cheat Sheet contains most of the information to get started, but here's a quick example.

To create a field as an anonymous value you can leverage JUnit's Rule engine as such,

@Rule public FixtureRule fr = FixtureRule.initFixtures()
@Fixture private Order order;

To create a variable inside a test method simply call,

JFixture fixture = new JFixture();
Order order = fixture.create(Order.class);

Maven

<dependency>
	<groupId>com.flextrade.jfixture</groupId>
	<artifactId>jfixture</artifactId>
	<version>2.7.2</version>
</dependency>

Upgrading

From v1

Running the following should be enough to upgrade most projects from v1 to v2:

find . -regextype sed -regex ".*/*.java" -type f -print0 | xargs -I {} -0 sh -c \
 "sed -i 's/flextrade.jfixture/com.flextrade.jfixture/g' {}; \
  sed -i 's/core.Fixture/JFixture/g' {}; \
  sed -i 's/annotations.AutoFixture/annotations.Fixture/g' {}; \
  sed -i 's/rules.FixtureCreator/rules.FixtureRule/g' {}; \
  sed -i 's/@AutoFixture/@Fixture/g' {}; \
  sed -i 's/new Fixture()/new JFixture()/g' {}; \
  sed -i 's/new FixtureCreator()/FixtureRule.initFixtures()/g' {}; \
  sed -i 's/ Fixture / JFixture /g' {}; \
  sed -i 's/FixtureCreator/FixtureRule/g' {}; \
 "

Scala

The jfixture-scala project has some basic support for Scala types & syntax.

com.flextrade.jfixture

FlexTrade UK Ltd

Versions

Version
2.7.2
2.7.1
2.7.0
2.6.3
2.6.1
2.6.0
2.5.1
2.5.0
2.4.0
2.3.0
2.2.1
2.2.0