Lines Matching refs:assertTrue
38 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testCompilationUseAndCollection()
39 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testCompilationUseAndCollection()
54 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
56 assertTrue(new Throwable().getStackTrace()[1].getMethodName().equals("callThrough")); in testGcWithCallThroughStubOnStack()
62 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
78 assertTrue(new Throwable().getStackTrace()[1].getMethodName().equals("callThrough")); in testMixedFramesOnStackStage2()
86 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testMixedFramesOnStackStage3()
88 assertTrue(new Throwable().getStackTrace()[1].getMethodName().equals("callThrough")); in testMixedFramesOnStackStage3()
101 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
105 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
111 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
137 public static void assertTrue(boolean value) { in assertTrue() method in Main