I'm trying to find a way to fail a test if the current Result.roundAverage value is a lot slower than the best historical value.
At the moment I am querying the H2 database in the @AfterClass method but this isn't working as the current value hasn't been written to the database yet. (It looks like a different thread is writing to the database)
Is there a way to get the value of Result.roundAverage through the API? If not, could I wire up my own IResultsConsumer somehow?