MVN

net.sourceforge.javydreamercsw : randoop

Maven & Gradle

Dec 05, 2012

Randoop · Randoop is an automatic unit test generator for Java. It automatically creates unit tests for your classes, in JUnit format. Randoop generates unit tests using feedback-directed random test generation. In a nutshell, this technique randomly, but smartly, generates sequences of methods and constructor invocations for the classes under test, and uses the sequences to create tests. Randoop executes the sequences it creates, using the results of the execution to create assertions that capture the behavior or your program and that catch bugs. Randoop has created tests that find previously unkwon errors even in widely-used libraries including Sun and IBM's JDKs. A .NET version of Randoop, used internally at Microsoft, has been used successfully by a team of test engineers to find errors in a core .NET component that has been heavily tested for years. Randoop's combination of randomized test generation and test execution results in a highly effective test generation technique.

<dependency>
    <groupId>net.sourceforge.javydreamercsw</groupId>
    <artifactId>randoop</artifactId>
    <version>1.3.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sourceforge.javydreamercsw : randoop to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3.2

All Versions

Choose a version of net.sourceforge.javydreamercsw : randoop to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3.x
randoop-1.3.2

How to add a dependency to Maven

Add the following net.sourceforge.javydreamercsw : randoop maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.sourceforge.javydreamercsw</groupId>
    <artifactId>randoop</artifactId>
    <version>1.3.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sourceforge.javydreamercsw : randoop gradle dependency to your build.gradle file:

implementation 'net.sourceforge.javydreamercsw:randoop:1.3.2'

Gradle Kotlin DSL: Add the following net.sourceforge.javydreamercsw : randoop gradle kotlin dependency to your build.gradle.kts file:

implementation("net.sourceforge.javydreamercsw:randoop:1.3.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sourceforge.javydreamercsw : randoop sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sourceforge.javydreamercsw" % "randoop" % "1.3.2"