public static void rollbackForTestClass() { SavePoint savePoint = TestRun.getSavePointForTestClass(); if (savePoint != null) { savePoint.rollback(); TestRun.setSavePointForTestClass(null); } }
public static void registerNewActiveSavePoint() { TestRun.setSavePointForTestClass(new SavePoint()); }