[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

@@ -146,7 +146,7 @@ class IdeaDecompilerTest : LightJavaCodeInsightFixtureTestCase() {
val jrt = JavaVersion.current().feature >= 9
val base = if (jrt) "jrt://${SystemProperties.getJavaHome()}!/java.desktop/" else "jar://${SystemProperties.getJavaHome()}/lib/rt.jar!/"
val file = VirtualFileManager.getInstance().findFileByUrl(base + "javax/swing/JTable.class")!!
PlatformTestUtil.startPerformanceTest("decompiling JTable.class") { decompiler.getText(file) }.assertTiming()
PlatformTestUtil.newPerformanceTest("decompiling JTable.class") { decompiler.getText(file) }.start()
}
fun testStructureView() {