John Galbraith
John Galbraith
This commit enables setting an explicit random number seed globally. This is useful when using the vectorized wrappers which do not otherwise support setting a seed. This commit is tested...
I would like to write a `setup()` or some other fixture that sets a unique random number seed for each replicant launched with `--runs`. Hence, if I used `--runs 5`...
My favorite Mettle feature is the template parameters to instantiate tests on different types. However, I have also been experimenting with function parameters to solve a different kind of testing...
I was poking around the mettle source (of which I am no expert) to figure out how one might add a properties based test, in particular by calling the RapidCheck...
Quill is working great in an application that I have, when running normally. I recently implemented an integration test suite, which also works great, when run serially. My test suite...
When using alignment such as this: ``` buffer.lines[0].set_align(Some(glyphon::cosmic_text::Align::Center)); ``` With configuration like this: ``` Some(glyphon::TextArea { buffer, left: bounds.location.x, top: bounds.location.y, scale: scale_factor, bounds: glyphon::TextBounds { top: bounds.location.y as i32,...