luontola / gospec

Testing framework for Go. Allows writing self-documenting tests/specifications, and executes them concurrently and safely isolated. [UNMAINTAINED]
Apache License 2.0
113 stars 17 forks source link

Parallel/Serial Runner options #7

Open ghthor opened 11 years ago

ghthor commented 11 years ago

This is the execution of the idea I expressed in #6.

TL:DR;

type Runner interface {
...
}  

type SerialRunner struct {
...
}  

type ParallelRunner struct {
...
}