2324252627282930313233
public class TestJavaHeap extends AbstractHProfTestCase { public void testNullConstructor() { try { JavaHeapImpl impl=new JavaHeapImpl(null,0, null); fail("expected illegal argument exception"); } catch(IllegalArgumentException iae) { ; }
3637383940414243444546
HProfView view=getMinimalHProfView(); try { JavaHeapImpl impl=new JavaHeapImpl(view,0, null); fail("expected illegal argument exception"); } catch(IllegalArgumentException iae) { ; }