Lines Matching refs:assertTrue

36     assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough"));  in testCompilationUseAndCollection()
37 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testCompilationUseAndCollection()
56 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
58 assertTrue(new Throwable().getStackTrace()[1].getMethodName().equals("callThrough")); in testGcWithCallThroughStubOnStack()
64 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
73 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testSingleInvocationTriggersRecompilation()
75 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testSingleInvocationTriggersRecompilation()
85 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testMixedFramesOnStack()
94 assertTrue(new Throwable().getStackTrace()[1].getMethodName().equals("callThrough")); in testMixedFramesOnStackStage2()
102 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testMixedFramesOnStackStage3()
104 assertTrue(new Throwable().getStackTrace()[1].getMethodName().equals("callThrough")); in testMixedFramesOnStackStage3()
110 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
113 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
121 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
125 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
131 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
157 public static void assertTrue(boolean value) { in assertTrue() method in Main