Ed Finkler
Ed Finkler
Yes, that makes a ton of sense. It needs to be fixed.
Yeah, that is a change in the newest versions (0.6.x). I made a change yesterday in the `testXXX()` methods, where they will return `false` if the key does not exist....
`FUnit::setup()` and `FUnit::teardown()` are _supposed_ to run before and after each test registered by `FUnit::test()`, respectively. You can also use `FUnit::before()` and `FUnit::after()`to run things before and after each **suite**...
Perhaps there should be a global set of fixtures? Or maybe that's outside the scope of FUnit… keeping it simple and all. Not sure. Thank you! On Tue, Apr 1,...
I've made a lot of progress on this. Things are testable to some extent, although testing the test building methods or report output is challenging. Tests do run within separate...