Created
February 18, 2019 09:03
-
-
Save JorgenRingen/87684e1d579a693aa28359cf04251f59 to your computer and use it in GitHub Desktop.
JUnit5 timingextension for tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.reflect.Method; | |
import java.util.logging.Logger; | |
import org.junit.jupiter.api.extension.AfterTestExecutionCallback; | |
import org.junit.jupiter.api.extension.BeforeTestExecutionCallback; | |
import org.junit.jupiter.api.extension.ExtensionContext; | |
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; | |
import org.junit.jupiter.api.extension.ExtensionContext.Store; | |
public class TimingExtension implements BeforeTestExecutionCallback, AfterTestExecutionCallback { | |
private static final Logger logger = Logger.getLogger(TimingExtension.class.getName()); | |
private static final String START_TIME = "start time"; | |
@Override | |
public void beforeTestExecution(ExtensionContext context) throws Exception { | |
getStore(context).put(START_TIME, System.currentTimeMillis()); | |
} | |
@Override | |
public void afterTestExecution(ExtensionContext context) throws Exception { | |
Method testMethod = context.getRequiredTestMethod(); | |
long startTime = getStore(context).remove(START_TIME, long.class); | |
long duration = System.currentTimeMillis() - startTime; | |
logger.info(() -> | |
String.format("Method [%s] took %s ms.", testMethod.getName(), duration)); | |
} | |
private Store getStore(ExtensionContext context) { | |
return context.getStore(Namespace.create(getClass(), context.getRequiredTestMethod())); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment