dougmill

Results 5 comments of dougmill

I've actually switched to `uint` and `ulong` now. Signed values are inconvenient to work with sometimes, and I might need the extra range of 64 bits.

I just now profiled it, and the results were mixed. Some times `uint` was faster, some times `int` was faster. `int` was faster more often, but the margin was never...

I encountered and was annoyed by this absent feature a while back. If I remember the results of my investigation correctly, in Guice (and Jukito) each object to be injected...

When to add `@All` and when not to in a `@Before` method is simple: add it if and only if you want the instance that a `@Test` method using `@All`...

@mmadson Two `InjectionReceiver`s is not ideal, but not really a problem. The important part of this issue is getting two distinct instances of `InjectedClass`, which you don't mention. And automocking...