org.testcontainers.containers.delegate.AbstractYCQLDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yugabytedb Show documentation
Show all versions of yugabytedb Show documentation
Isolated container management for Java code testing
package org.testcontainers.containers.delegate;
import org.testcontainers.delegate.DatabaseDelegate;
/**
* An abstract delegate do-nothing class
*/
public abstract class AbstractYCQLDelegate implements DatabaseDelegate {
@Override
public void execute(
String statement,
String scriptPath,
int lineNumber,
boolean continueOnError,
boolean ignoreFailedDrops
) {
// do nothing
}
@Override
public void close() {
// do nothing
}
}