Dmitry Cherniachenko

Results 29 comments of Dmitry Cherniachenko

I would also like to use square icons. I really like how FreeOTP looks on Android. But it lacks backup. So I am looking for an alternative.

Well, technically `enum` values could also produce identical `toString()` output. And though one wouldn't normally do that such assumption can not be made JUnit code. Instead of targeting specific cases...

The problem with `assertEquals` is that sometimes you do need to compare the types too. So I believe `assertEquals("abc", new StringBuilder("abc"))` must fail. Therefore the need for separate methods to...

So far I've been thinking of just these two: `Assert.assertContentEquals(CharSequence expected, CharSequence actual)` `Assert.assertContentEquals(String message, CharSequence expected, CharSequence actual)`

Here is an example of how it might look in a test: `assertContentEquals("abc", bundle.getCharSequence(Notification.EXTRA_TEXT));` Adding also a `HasValue` `Matcher` is a good idea.

Good point. Though I am hesitant because having expected and actual values with the same type looks cleaner. And I would also compare the lengths first. To avoid calling `toString()`...

No, it's not about the "New Tab" button. When I (Ctrl+)click a link in a compact pinned tab I would expect a new tab to appear at the bottom of...

Tree Style Tab has a workaround in the latest version. When a link is clicked in a pinned tab a new "parent" tab is created at the bottom of the...

Actually that extra parent tab can be disabled in the settings. And the new tabs would just appear at the end of the list.

@Keith94 , Thanks. But I don't quite like the idea to fix add-on issue with yet another add-on. If only Tree Style Tab allowed to disable folding of the nodes...