MVN

io.violabs.geordi : unit-sim

Maven & Gradle

Jan 14, 2024
1 stars

Geordi - Next Generation Testing Framework · Geordi Test Framework is a Kotlin-based testing framework integrating with JUnit 5's TestTemplate for dynamic and parameterized testing. It supports file-based and parameter-based scenarios, suitable for various testing contexts. Key features include dynamic test case generation, SimulationGroup for scenario organization, and integration with JUnit 5's advanced features. It also includes a utility class, UnitSim, for method-level testing and mocking with Mockk. Geordi is inspired by the Spock framework, aiming to provide comparable functionality in a Kotlin-optimized package.

<dependency>
    <groupId>io.violabs.geordi</groupId>
    <artifactId>unit-sim</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.violabs.geordi : unit-sim to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of io.violabs.geordi : unit-sim to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
unit-sim-1.0.0

How to add a dependency to Maven

Add the following io.violabs.geordi : unit-sim maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.violabs.geordi</groupId>
    <artifactId>unit-sim</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.violabs.geordi : unit-sim gradle dependency to your build.gradle file:

implementation 'io.violabs.geordi:unit-sim:1.0.0'

Gradle Kotlin DSL: Add the following io.violabs.geordi : unit-sim gradle kotlin dependency to your build.gradle.kts file:

implementation("io.violabs.geordi:unit-sim:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.violabs.geordi : unit-sim sbt scala dependency to your build.sbt file:

libraryDependencies += "io.violabs.geordi" % "unit-sim" % "1.0.0"

Advertisement