Skip to content

optivem/optivem-testing-java

Repository files navigation

Optivem Testing Java Library

Commit Stage Acceptance Stage Release Stage

A testing library to support Acceptance Testing in Java.

Usage

Add as Dependency

The library is available on Maven Central https://mvnrepository.com/artifact/com.optivem/optivem-testing

Gradle

dependencies {
    implementation 'com.optivem:optivem-testing:1.0.4'
}

Maven

<dependency>
    <groupId>com.optivem</groupId>
    <artifactId>optivem-testing</artifactId>
    <version>1.0.4</version>
</dependency>

Code Example

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
    }
}

Development

Requirements

  • Java 21 or higher
  • Gradle 9.1.0 (included via wrapper)

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

Optivem Test (Java)

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages