Jordan Longstaff

Results 46 comments of Jordan Longstaff

> Turns out my setup for the test was wrong; the try-catch is supposed to detect if a user's already logged in, but it doesn't work (not that I'd know...

I used `ViewInteraction.withFailureHandler` as explained in one of the answers [here](https://stackoverflow.com/questions/20807131/espresso-return-boolean-if-view-exists). I checked for the login button to _not_ exist if a user's already logged in, and added the login...

Here's a logcat dump from the device. To make it easier to digest, I cut it down to start from after the last log entry that comes directly from the...

Using 18.0.3. Still an issue. Using Android Studio Flamingo w/AGP 8.0.

Same thing is happening to me. Here's my code: ``` private void AddressChanged(object sender, AutoSuggestBoxTextChangedEventArgs e) { AutoSuggestBox box = sender as AutoSuggestBox; if (e.Reason == AutoSuggestionBoxTextChangeReason.UserInput) { string text...

OK, I found a workaround, which was to add an `Unfocused` event listener to explicitly clear `ItemsSource` when the box loses focus. However, this means that the suggestion list will...

Interestingly, the workaround also works if it's a `Focused` event listener that clears `ItemsSource` instead. Hmmm...

I wish. For whatever reason, any exceptions thrown by the network interface never include a stack trace.

I don't think the stack trace is being lost because of your library. I think it's simply my IDE is being too stupid to save it. The exception is thrown...

Unfortunately, one of the subclasses uses the test factories in a slightly different way than the constructor above (it's a sealed class with two subclasses), so the test factories still...