summaryrefslogtreecommitdiff
path: root/src/test/java/au/id/zancanaro/PropertyTests.java
blob: 0c9bb7e71ec28ae603ba25bbb4d8a51b9d606cc8 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package au.id.zancanaro;

import au.id.zancanaro.annotations.Property;
import au.id.zancanaro.annotations.Seed;
import org.junit.Assert;
import org.junit.Assume;
import org.junit.runner.RunWith;

@RunWith(PropertyTestRunner.class)
public class PropertyTests {
    @Property
    public void method(int a, int b) {
        Assert.assertFalse(a < b);
    }
}