TestEE.fi - cucumber module

Functional testing for Java-EE.

License

License

Categories

Categories

Cucumber Application Testing & Monitoring
GroupId

GroupId

fi.testee
ArtifactId

ArtifactId

testeefi-cucumber
Last Version

Last Version

0.6.1
Release Date

Release Date

Type

Type

jar
Description

Description

TestEE.fi - cucumber module
Functional testing for Java-EE.
Source Code Management

Source Code Management

https://github.com/dajudge/testee.fi

Download testeefi-cucumber

How to add to project

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

Dependencies

compile (3)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.21
info.cukes : cucumber-java jar 1.2.5
fi.testee : testeefi-core jar 0.6.1

test (3)

Group / Artifact Type Version
ch.qos.logback : logback-classic jar 1.1.7
org.hamcrest : hamcrest-all jar 1.3
fi.testee : testeefi-mockito jar 0.6.1

Project Modules

There are no modules declared in this project.

TestEE.fi

TestEE.fi (as in "testify") is a lightweight functional testing framework for Java-EE applications.

By conveniently integrating a fully blown CDI implentation (TestEE.fi internally uses Weld, the CDI reference implementation) with much loved mocking frameworks like Mockito and EasyMock and proven database setup tools like Flyway and Liquibase it offers a natural way to write tests for your Java-EE application the same way you write your unit tests. And by integrating with test-runtimes like JUnit 4 & 5 or Cucumber JVM it allows you to run your tests directly from your preferred IDE and build tool - at speeds very close to unit-level testing.

Getting started

Getting started with TestEE.fi is really easy. First you need to add TestEE.fi to your project’s dependencies. In Maven this looks like the following snippet:

<dependencies>
    <dependency>
        <groupId>fi.testee</groupId>
        <artifactId>testeefi-junit4-all</artifactId>
        <version>0.6.1</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>ch.qos.logback</groupId>
        <artifactId>logback-classic</artifactId>
        <version>1.1.7</version>
        <scope>test</scope>
    </dependency>
</dependencies>

If you’re using Gradle, the snippet would look like this:

repositories {
    mavenCentral()
}
dependencies {
	testCompile 'fi.testee:testeefi-junit4-all:0.6.1'
	testCompile 'ch.qos.logback:logback-classic:1.1.7'
}

All you need to do now is to annotate your JUnit 4 test case like this:

@RunWith(TestEEfi.class)
public class MyTest {
	@Mock
	private ExternalSystemBean externalSystem;
	@Inject
	private FacadeBean facadeToTest;
	
	@Test
	public void runTest() {
		// Your test code
	}
}

Introduction and tutorials

The series of blog articles "Functional testing Java-EE applications with TestEE.fi" serves the purpose of introductory tutorials very well:

Example projects

There's also a number of example projects based on a Gradle build that demonstrate the usage of TestEE.fi. You can find them in a separate repository.

Versions

Version
0.6.1
0.6.0
0.5.3
0.5.2
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0