Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.randoop:randoop:4.3.2'
}
dependencies {
implementation("com.github.randoop:randoop:4.3.2")
}
<dependency>
<groupId>com.github.randoop</groupId>
<artifactId>randoop</artifactId>
<version>4.3.2</version>
</dependency>
libraryDependencies += "com.github.randoop" % "randoop" % "4.3.2"
:dependencies [[com.github.randoop/randoop "4.3.2"]]
Randoop is a unit test generator for Java. It automatically creates unit tests for your classes, in JUnit format.
agent
- subprojects for Java agents (load-time bytecode rewriting)gradle
- the Gradle wrapper directory (Should not be edited)lib
- jar files for local copies of libraries not available via Mavenscripts
- git hook scriptssrc
- source directories for Randoop, including
coveredTest
- source for JUnit tests of the covered-class Java agentdistribution
- resource files for creating the distribution zip filedocs
- documentation, including the manual and resourcesjavadoc
- resource files for creating API documentationmain
- Randoop source codereplacecallTest
- source for JUnit tests of the replacecall Java agentsystemTest
- source for Randoop system teststest
- source for JUnit tests of RandooptestInput
- source for libraries used in Randoop testingThe source directories follow the conventions of the Gradle Java plugin, where each directory has a java subdirectory containing Java source, and, in some cases, a resources subdirectory containing other files.