Java library for writing performance test records.
class MyTest {
@Test
void myTest(TestInfo testInfo) {
PerformanceTestRecorder.getInstance().recordExecution(testInfo,
() -> sql.executeQuery("SELECT * FROM TEST"));
}
}
The performance test recorder writes the record to target/performanceLog-<TIMESTAMP>.csv
.