[unit perf tests] AT-644 Removed expected time from the tests

GitOrigin-RevId: a53f40c1721a46c7833018346dc622dec1f1b80a
This commit is contained in:
Nikita Kudrin
2024-02-06 16:59:31 +02:00
committed by intellij-monorepo-bot
parent 1d5c04b55f
commit b143fe1540
118 changed files with 376 additions and 389 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", 10000) { decompiler.getText(file) }.assertTiming()
PlatformTestUtil.startPerformanceTest("decompiling JTable.class") { decompiler.getText(file) }.assertTiming()
}
fun testStructureView() {