MVN

com.github.nylle : kotlinfixture

Maven & Gradle

Dec 09, 2022
3 stars

KotlinFixture · KotlinFixture is the attempt to bring Mark Seemann's AutoFixture for .NET to Kotlin. Its purpose is to generate full object graphs for use in test suites with a fluent API for customising the test objects during generation.

<dependency>
    <groupId>com.github.nylle</groupId>
    <artifactId>kotlinfixture</artifactId>
    <version>0.3.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.nylle : kotlinfixture to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.3.0

All Versions

Choose a version of com.github.nylle : kotlinfixture to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.3.x
kotlinfixture-0.3.0
0.2.x
kotlinfixture-0.2.0
0.1.x
kotlinfixture-0.1.0
0.0.x
kotlinfixture-0.0.5

How to add a dependency to Maven

Add the following com.github.nylle : kotlinfixture maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.nylle</groupId>
    <artifactId>kotlinfixture</artifactId>
    <version>0.3.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.nylle : kotlinfixture gradle dependency to your build.gradle file:

implementation 'com.github.nylle:kotlinfixture:0.3.0'

Gradle Kotlin DSL: Add the following com.github.nylle : kotlinfixture gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.nylle:kotlinfixture:0.3.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.nylle : kotlinfixture sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.nylle" % "kotlinfixture" % "0.3.0"

Advertisement