io.github.olib963.javatest.matchers.CheckedRunnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javatest-matchers Show documentation
Show all versions of javatest-matchers Show documentation
Matchers to create assertions from common conditions
package io.github.olib963.javatest.matchers;
@FunctionalInterface
public interface CheckedRunnable {
void run() throws Exception;
}