Dio

Results 10 comments of Dio

> https://plugins.jetbrains.com/docs/intellij/ide-infrastructure.html - obsolete? @YannCebron @hsz I think it' better to add log severity configuration guide for plugin developers from both https://plugins.jetbrains.com/docs/intellij/ide-infrastructure.html and https://www.jetbrains.com/help/idea/2021.3/setting-log-options.html It did take some time for...

You can try below: ```Java @RunWith(RobolectricTestRunner.class) @Config(constants = BuildConfig.class, application = ApplicationMock.class) @PowerMockIgnore({"org.mockito.*", "org.robolectric.*", "android.*"}) @PrepareForTest(ABService.class) public class LoginActivityTest { @Rule public PowerMockRule rule = new PowerMockRule(); @Before public void...

Further more, a base test class which simply composes Robolectric and PowerMock may be very helpful. And most annotations can be prepared at this time, for those annotations are @Inherited,...

I'm interested in this issue, and willing to send a PR to fix it in my spare time. Is @akandratovich or anyone solving this? @hoisie @utzcoz Could you please assign...

@utzcoz @hoisie I give a possible solution for it, appreciate if you can help reviewing this. And I hava a question for it: It looks a portable openFileDescriptorTable shim is...

> @utzcoz @hoisie I give a possible solution for it, appreciate if you can help reviewing this. > > And I hava a question for it: It looks a portable...

@utzcoz @hoisie Could you please help with code review on this?

@serras Thanks~ Another question, is `Kotlin analysis tools` the same as kotlinc-low-level-api-fir? Is it possible to use someting like `kotlinc-high-level-api-fir` which could accept something like `PsiJavaFile` for Java? Just curious...

Looks like that when `collectTests` was exeuted in a runnable and wait for Android JUnit Runner to `addTest` to `CallbackLogic`. But in process crashed case, the remote Android JUnit Runner...

> @ZSmallX - Your explanation looks reasonable but I'm having difficulty reproducing. Would you mind sharing a sample project with a repro? @ananci Yeah, here is the repro https://github.com/ZSmallX/android_test_issue_1834 And...