Files
openide/plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/TestUtil.java
Maxim.Kolmakov 1196257bd0 AT-126 Open-source performance plugin
Split performance plugin into core (and move it to community), async and YK. Move Cache Value Profiler to separate plugin.

GitOrigin-RevId: 80e68080197e86d40c76be45d5438ec0eee39818
2022-10-26 13:08:49 +00:00

15 lines
281 B
Java

package com.jetbrains.performancePlugin;
import org.jetbrains.annotations.NonNls;
public final class TestUtil {
private TestUtil() {
}
@NonNls
public static String getDataSubPath(@NonNls String theme) {
return "/plugins/performanceTesting/testData/" + theme;
}
}