e6885323da
Short description. It's a corner-case with old MPP plugins and AS, so we don't care too much that it works incorrectly, but we'd like to avoid muting it in order to keep track of this "known issue" Long description. In IDEA, KotlinJvmTestMethodGradleConfigurationProducer successfully returns run configuration; in AS, it fails to do so. This is becasuse it doesn't override 'forceGradleRunner', which means that in 'setupConfigurationFromContext' we'll delegate to super-call, which will pull 'GradleProjectSettings.getTestRunner()'. In IDEA, it will return GRADLE, but in AS it will return PLATFORM, because AS uses special instance of GradleProjectSettings which forces runner to PLATFORM. Note that KotlinMultiplatformJvmTestMethodGradleConfigurationProducer does override 'forceGradleRunner' to true, that's why other tests work successfully. However, this test uses old 1.2.X-MPP plugins, therefore all new KotlinMultiplatform*ConfigurationProducers won't work here.\