Example usage for org.springframework.ide.eclipse.boot.dash.test.mocks MockCFBuildpack MockCFBuildpack

List of usage examples for org.springframework.ide.eclipse.boot.dash.test.mocks MockCFBuildpack MockCFBuildpack

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.dash.test.mocks MockCFBuildpack MockCFBuildpack.

Prototype

public MockCFBuildpack(String name) 

Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.dash.test.mocks.MockCloudFoundryClientFactory.java

public MockCFBuildpack defBuildpack(String n) {
    MockCFBuildpack it = new MockCFBuildpack(n);
    buildpacksByName.put(n, it);
    return it;
}