Sam Gendler
Sam Gendler
Issue tracker is used for reporting bugs and discussing new features. Please use [stackoverflow](https://stackoverflow.com) for supporting issues. if one executes a command via client.Do() which will return a Slice, the...
There are a whole slew of problems. First and foremost, it isn't honoring the wire protocol definition - because the docs are structured ridiculously. They document the wire format for...
From the documentation for this package: ``` The only available option is messageName, which is used to select which message in a schema containing multiple messages to use for encoding/decoding...
Added example implementations for handling Do() with various return types. Needs to be fleshed out with all of the various potential return types and tests, but demonstrates the concept. I...
There are plenty of commands mocked which purport to return StringSlice or IntSlice, but there are no tests which exercise them. When I attempted to test code which returns a...
It seems as though there is no way to test code which uses client-unsupported commands via: `client.Do(ctx, "cmd", ...args)` There definitely seems to be no example and I see no...
counterfeiter fakes include a line at the bottom which assigns a pointer to the fake to a variable declared as type of interface being mocked. This is a great way...
Copying the functionality of a base implementation into the extending struct's implementation is a recipe for later bugs when changes are made in the base implementation that don't get copied...
When I launch the app with Oculus app running and quest3 linked (via cable), the app starts up, displays the border of a window, and then goes away - leaving...
From what I can tell, it demonstrates using _different_ contexts on different jobs, but doesn't demonstrate using _multiple_ contexts on a single job.