[benchmarks] Renaming PerformanceTest* => Benchmark*

GitOrigin-RevId: 9963b84d51e1062acc262a8d3d3de1409a708e3b
This commit is contained in:
Nikita Kudrin
2024-07-23 14:53:53 +03:00
committed by intellij-monorepo-bot
parent f4c5a365ab
commit cdf91bf213
127 changed files with 473 additions and 474 deletions

View File

@@ -6,7 +6,7 @@ import com.intellij.openapi.application.WriteAction;
import com.intellij.openapi.util.Disposer;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.openapi.vfs.VirtualFileManager;
import com.intellij.tools.ide.metrics.benchmark.PerformanceTestUtil;
import com.intellij.tools.ide.metrics.benchmark.Benchmark;
import com.intellij.util.io.storage.AbstractStorage;
import java.io.DataInputStream;
@@ -41,7 +41,7 @@ public class LocalHistoryStorageTest extends IntegrationTestCase {
() -> VirtualFileManager.getInstance().findFileByUrl("temp:///").createChildData(null, "testChangesAccumulationPerformance.txt")
);
try {
PerformanceTestUtil.newPerformanceTest("local history changes accumulation", () -> {
Benchmark.newBenchmark("local history changes accumulation", () -> {
doChangesAccumulationPerformanceTest(f);
}).start();
}