https://github.com/tsundberg/recycling-examples
How can you make sure that you are able to connect to your system under test using different seams?
https://github.com/tsundberg/recycling-examples
Last synced: 3 months ago
JSON representation
How can you make sure that you are able to connect to your system under test using different seams?
- Host: GitHub
- URL: https://github.com/tsundberg/recycling-examples
- Owner: tsundberg
- License: apache-2.0
- Created: 2019-05-15T12:03:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-16T07:43:33.000Z (about 6 years ago)
- Last Synced: 2025-01-05T13:42:23.856Z (5 months ago)
- Language: Java
- Size: 8.86 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Recycling examples
The example that describes the behaviour of a system should be
valid however you use a system. The behaviour is not expected
to be different if you its web user interface or through its rest api.This leads us to want to use the same example and verify that
the system works through different seams and with different clients
or devices.## Specifying the seam, client, or device
Recycling examples means that the seam, client, or device must be specified
when the system is built.This is a Java example. Specifying runtime properties for the JVM is done
using `-Dproperpty-name=property-value`.This can be used to specify a combination of the seam, the client, and the device
that should be used for a specific execution.## Building
The example uses Gradle, build it with:
./gradlew cucumber
This will build the system and verify that the core works as expected.
That is, that the model works as expected.