Re: Best way to test multiple implementations of a protocol?

2015-03-27 Thread Atamert Ölçgen
Hi Leif, What does this answer fail to address? http://stackoverflow.com/a/16579272/42188 On Wed, Mar 25, 2015 at 3:40 AM, Leif leif.poor...@gmail.com wrote: If I have a protocol that supposedly satisfies some constraints, and multiple implementations that supposedly implement the

Best way to test multiple implementations of a protocol?

2015-03-24 Thread Leif
If I have a protocol that supposedly satisfies some constraints, and multiple implementations that supposedly implement the protocol, what is the best way to test them all? A minimal example is here: https://gist.github.com/leifp/bf5c74eea98026329a76 This question on SO is basically the same