Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neomatrix369/fluent-specs
Java library for BDD-style unit-level specifications
https://github.com/neomatrix369/fluent-specs
Last synced: 16 days ago
JSON representation
Java library for BDD-style unit-level specifications
- Host: GitHub
- URL: https://github.com/neomatrix369/fluent-specs
- Owner: neomatrix369
- License: mit
- Created: 2013-11-24T07:39:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-10-14T02:33:14.000Z (about 4 years ago)
- Last Synced: 2024-05-01T21:06:04.572Z (7 months ago)
- Language: Java
- Size: 27.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Fluent-Specs
===================FluentSpecs is a Java API for fluent unit-level specification using a BDD/Gherkin format. It provides a thin uniform interface for
mocking, behaviour and state verification around Mockito and Hamcrest.Inspired by Hamcrest, Mockito, Fest-Assertions, RSpec and Narrative.
The current version only provides the most common subset of the functionality present in Hamcrest and Mockito.
To use as Maven dependency, download [jar](https://github.com/JoseLlarena/FluentSpecs/raw/master/dist/fluent-specs-2.0.0.jar) and run:
```shell
mvn install:install-file -DgroupId=com.fluent -DartifactId=fluent-specs -Dpackaging=jar -Dversion=2.0.0 -Dfile=fluent-specs-2.0.0.jar -DgeneratePom=true
```then you can reference it in your pom.xml as
```xml
com.fluent
fluent-specs
2.0.0
test```