Enable mute for KotlinCompletionTestCase

This commit is contained in:
Nikolay Krasko
2020-02-25 16:35:20 +03:00
parent 66e2f95dba
commit c22272bbca
3 changed files with 28 additions and 0 deletions
@@ -25,4 +25,10 @@ abstract public class KotlinCompletionTestCase extends CompletionTestCase {
VfsRootAccess.disallowRootAccess(KotlinTestUtils.getHomeDirectory());
super.tearDown();
}
@Override
protected void runTest() throws Throwable {
//noinspection Convert2MethodRef
KotlinTestUtils.runTestWithThrowable(this, () -> super.runTest());
}
}