diff options
Diffstat (limited to 'tools/ahat/test/PerformanceTest.java')
-rw-r--r-- | tools/ahat/test/PerformanceTest.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/ahat/test/PerformanceTest.java b/tools/ahat/test/PerformanceTest.java index 6e46800603..e13974bb6f 100644 --- a/tools/ahat/test/PerformanceTest.java +++ b/tools/ahat/test/PerformanceTest.java @@ -16,13 +16,15 @@ package com.android.ahat; -import com.android.tools.perflib.heap.Instance; +import com.android.ahat.heapdump.AhatInstance; +import com.android.ahat.heapdump.AhatSnapshot; import java.io.IOException; import java.io.OutputStream; import java.io.PrintStream; +import org.junit.Test; + import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; -import org.junit.Test; public class PerformanceTest { private static class NullOutputStream extends OutputStream { @@ -36,7 +38,7 @@ public class PerformanceTest { // for any object, including big arrays. TestDump dump = TestDump.getTestDump(); - Instance bigArray = (Instance)dump.getDumpedThing("bigArray"); + AhatInstance bigArray = dump.getDumpedAhatInstance("bigArray"); assertNotNull(bigArray); AhatSnapshot snapshot = dump.getAhatSnapshot(); |