summaryrefslogtreecommitdiff
path: root/src/main/java/au/id/zancanaro/annotations
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@zancanaro.id.au>2015-05-31 16:48:45 +1000
committerCarlo Zancanaro <carlo@zancanaro.id.au>2015-05-31 16:48:45 +1000
commit199037f9c80afd885f1f536d91b40a8397cd6bf2 (patch)
tree2153d808dde4d3b7d5473ba313642ee42d1190b5 /src/main/java/au/id/zancanaro/annotations
parentc25450f6288748782ad60cc7c4b8e0e0bdc52c1c (diff)
Improve lots of things
In particular: + make output more sane and less all over the place + just ignore original exception, the shrunk one is the only one which really matters + fit into the jUnit framework more (so now @Before, @After and stuff work)
Diffstat (limited to 'src/main/java/au/id/zancanaro/annotations')
-rw-r--r--src/main/java/au/id/zancanaro/annotations/Property.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/au/id/zancanaro/annotations/Property.java b/src/main/java/au/id/zancanaro/annotations/Property.java
index cfe8e45..f750596 100644
--- a/src/main/java/au/id/zancanaro/annotations/Property.java
+++ b/src/main/java/au/id/zancanaro/annotations/Property.java
@@ -8,6 +8,6 @@ import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Property {
- int size() default 100;
+ int maxSize() default 100;
int runs() default 100;
}