Package io.github.cdklabs.projen.cdk
Interface IntegrationTestBaseOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
IntegrationTestOptions,IntegrationTestOptions
- All Known Implementing Classes:
IntegrationTestBaseOptions.Jsii$Proxy,IntegrationTestOptions.Jsii$Proxy,IntegrationTestOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:42.962Z") @Stability(Experimental) public interface IntegrationTestBaseOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for IntegrationTest.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIntegrationTestBaseOptions.BuilderA builder forIntegrationTestBaseOptionsstatic classIntegrationTestBaseOptions.Jsii$ProxyAn implementation forIntegrationTestBaseOptions
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static IntegrationTestBaseOptions.Builderbuilder()StringgetEntrypoint()(experimental) A path from the project root directory to a TypeScript file which contains the integration test app.default StringgetName()(experimental) Name of the integration test.StringgetTsconfigPath()(experimental) The path of the tsconfig.json file to use when running integration test cdk apps.
-
-
-
Method Detail
-
getEntrypoint
@Stability(Experimental) @NotNull String getEntrypoint()
(experimental) A path from the project root directory to a TypeScript file which contains the integration test app.This is relative to the root directory of the project.
Example:
"test/subdir/foo.integ.ts"
-
getTsconfigPath
@Stability(Experimental) @NotNull String getTsconfigPath()
(experimental) The path of the tsconfig.json file to use when running integration test cdk apps.
-
getName
@Stability(Experimental) @Nullable default String getName()
(experimental) Name of the integration test.Default: - Derived from the entrypoint filename.
-
builder
@Stability(Experimental) static IntegrationTestBaseOptions.Builder builder()
- Returns:
- a
IntegrationTestBaseOptions.BuilderofIntegrationTestBaseOptions
-
-