Lines Matching refs:assertIntEquals
31 public static void assertIntEquals(int expected, int result) { in assertIntEquals() method in Main
252 assertIntEquals(42, (int)negatedCondition.invoke(null, true)); in main()
253 assertIntEquals(43, (int)negatedCondition.invoke(null, false)); in main()
254 assertIntEquals(46, SimpleTrueBlock(true, 4)); in main()
255 assertIntEquals(43, SimpleTrueBlock(false, 4)); in main()
256 assertIntEquals(42, SimpleFalseBlock(true, 7)); in main()
257 assertIntEquals(50, SimpleFalseBlock(false, 7)); in main()
258 assertIntEquals(48, SimpleBothBlocks(true, 6, 2)); in main()
259 assertIntEquals(45, SimpleBothBlocks(false, 6, 2)); in main()
260 assertIntEquals(1, ThreeBlocks(true, true)); in main()
261 assertIntEquals(1, ThreeBlocks(true, false)); in main()
262 assertIntEquals(2, ThreeBlocks(false, true)); in main()
263 assertIntEquals(3, ThreeBlocks(false, false)); in main()
264 assertIntEquals(13, (int)multiplePhis.invoke(null)); in main()
267 assertIntEquals(42, m.TrueBlockWithTooManyInstructions(true)); in main()
268 assertIntEquals(43, m.TrueBlockWithTooManyInstructions(false)); in main()
269 assertIntEquals(42, m.FalseBlockWithTooManyInstructions(true)); in main()
270 assertIntEquals(43, m.FalseBlockWithTooManyInstructions(false)); in main()
271 assertIntEquals(42, m.TrueBlockWithSideEffects(true)); in main()
272 assertIntEquals(43, m.TrueBlockWithSideEffects(false)); in main()
273 assertIntEquals(42, m.FalseBlockWithSideEffects(true)); in main()
274 assertIntEquals(43, m.FalseBlockWithSideEffects(false)); in main()