[unit perf tests] AT-644 Renaming

GitOrigin-RevId: 464b77181de9f1e0cc6de2623201635c405ee4c3
This commit is contained in:
Nikita Kudrin
2024-02-07 15:42:42 +02:00
committed by intellij-monorepo-bot
parent 33d338611b
commit 3dce2dce2f
120 changed files with 569 additions and 578 deletions

View File

@@ -37,16 +37,16 @@ public class HtmlHighlightingPerformanceTest extends BasePlatformTestCase {
public void testPerformance2() {
myFixture.configureByFiles(getTestName(false) + ".html", "manual.css");
PlatformTestUtil.startPerformanceTest("HTML Highlighting 2", () -> doTest())
PlatformTestUtil.newPerformanceTest("HTML Highlighting 2", () -> doTest())
.warmupIterations(1)
.assertTiming();
.start();
}
public void testPerformance() {
myFixture.configureByFiles(getTestName(false) + ".html", "stylesheet.css");
PlatformTestUtil.startPerformanceTest("HTML Highlighting", () -> doTest())
PlatformTestUtil.newPerformanceTest("HTML Highlighting", () -> doTest())
.warmupIterations(1)
.assertTiming();
.start();
}
protected void doTest() {