Groovy Documentation

org.gradle.testfixtures
[Java] Class ProjectBuilder

java.lang.Object
  org.gradle.testfixtures.ProjectBuilder

public class ProjectBuilder

Creates dummy instances of Project which you can use in testing custom task and plugin implementations.

To create a project instance:

  1. Create a ProjectBuilder instance by calling builder().
  2. Optionally, configure the builder.
  3. Call build() to create the Project instance.

You can reuse a builder to create multiple Project instances.


Method Summary
Project build()

Creates the project.

static ProjectBuilder builder()

Creates a project builder.

ProjectBuilder withProjectDir(java.io.File dir)

Specifies the project directory for the project to build.

 
Methods inherited from class java.lang.Object
java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()
 

Method Detail

build

public Project build()
Creates the project.
Returns:
The project


builder

public static ProjectBuilder builder()
Creates a project builder.
Returns:
The builder


withProjectDir

public ProjectBuilder withProjectDir(java.io.File dir)
Specifies the project directory for the project to build.
Parameters:
dir - The project directory
Returns:
A new ProjectBuilder.


 

Groovy Documentation