summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/junit/flip_assert_literal/Message_after.java
blob: 410867880ac3a7b52a74bbc28cbcbcdabd9ae45b (plain)
1
2
3
4
5
6
7
8
9
package com.siyeh.ipp.junit.flip_assert_literal;

import org.junit.Assert;

class Messsage {
  void test(boolean b) {
      Assert.assertFalse("message", b);
  }
}