A testing library to support Acceptance Testing in Java.
The library is available on Maven Central https://mvnrepository.com/artifact/com.optivem/optivem-testing
dependencies {
implementation 'com.optivem:optivem-testing:1.0.4'
}<dependency>
<groupId>com.optivem</groupId>
<artifactId>optivem-testing</artifactId>
<version>1.0.4</version>
</dependency>import com.optivem.testing.Channel;
public class Example {
public static void main(String[] args) {
Channel channel = new Channel("test-channel");
String name = channel.getName();
System.out.println("Channel name: " + name); // Output: test-channel
}
}- Java 21 or higher
- Gradle 9.1.0 (included via wrapper)
This project is licensed under the MIT License - see the LICENSE file for details.