All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.t1.testcontainers.tools.LogLinesAssert Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy