Gregor Trefs

Results 12 comments of Gregor Trefs

In 4.6: ```Java @Property(tries = 1_000_000) void measure( @ForAll Integer key, @ForAll("trees") BST bst ) { List keys = bst.keys(); String frequency = keys.contains(key) ? "present" : "absent"; Statistics.label("frequency").collect(frequency); String...

I am looking forward to your presentation on thursday. Regarding the examples, I found this discussion very helpful on how to design REST properly: [websites vs apis](http://olivergierke.de/2013/02/websites-vs-apis/) and [Turning passive...