summaryrefslogtreecommitdiff
path: root/src/main/java/au/id/zancanaro/javacheck/ShrinkResult.java
blob: a28c2a5465b1dfea07ca72802930c643723dab1a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package au.id.zancanaro.javacheck;

import java.util.Arrays;
import java.util.List;

public class ShrinkResult {
    public final List<Object> args;
    public final Throwable thrown;

    public ShrinkResult(List<Object> args, Throwable thrown) {
        this.args = args;
        this.thrown = thrown;
    }
}