com.github.t1.testcontainers.tools.LogLinesAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jee-testcontainers Show documentation
Show all versions of jee-testcontainers Show documentation
testcontainers.org for Jakarta EE application servers
The newest version!
package com.github.t1.testcontainers.tools;
import java.util.Iterator;
@SuppressWarnings("UnusedReturnValue")
public class LogLinesAssert extends AbstractLogLinesAssert {
public LogLinesAssert(String actual) {
super(actual);
}
public LogLinesAssert(Iterator actual) {
super(actual);
}
}