Nick
Nick
Hi @JLLeitschuh! Nick from the Guava team here. I sincerely apologize for my radio silence on the matter. I take full responsibility for not having been well engaged in this...
`PathSubject` exists as part of the Truth8 extension now, mostly to resolve the ambiguity of `IterableSubject` and `ComparableSubject`: https://github.com/google/truth/blob/cf94032329283f44d0d91ee986bdfb9111298b2b/extensions/java8/src/main/java/com/google/common/truth/Truth8.java#L81 Leaving this open to decide how to do more assertions on...
https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/MessageLite.html?is-external=true is a publicly-accessible link (as far as I can tell, I've tried it incognito from my cell phone, etc.). Can you share any more information about why you think...
Thanks for the reproduction steps @markuss5l! I suspect that developers.google.com has a strict framing policy out of an abundance of caution. I'll see what I can do in terms of...
This is a very old bug now (~7 years since it was filed). Can you describe why someone might use Truth as a dependency in an OSGI application?
https://truth.dev/extension#writing-your-own-custom-subject is what we have now.
Current status: https://truth.dev/api/1.0/com/google/common/truth/MultimapSubject.html The ordering test (keys, then values in each key) is documented on: `containsAtLeastEntriesIn(Multimap)` `containsExactlyEntriesIn(Multimap)` but is not documented on: `containsExactly(Object, Object, Object...)` `containsAtLeast(Object, Object, Object...)`
Triaging: The `IterableSubject` returned by `asList()` doesn't contain an overload for `containsExactlyElementsIn(int[])`, whereas the float/double versions have specialized methods (as they have their own custom return types that we can...
Customizing the severity level of the builtin checks, applied globally to the compilation: `-Xep:CheckName:ERROR`
Disabling warning-level checks in code marked with the `@Generated` annotation: `-XepDisableWarningsInGeneratedCode`