[jvm] Split JUnit usage provider per framework

Will allow for disabling them individually. #IDEA-346510 Fixed

GitOrigin-RevId: 7b879111b92f38a7a55166d67d657520c6d9314d
This commit is contained in:
Bart van Helvert
2024-03-12 01:13:37 +00:00
committed by intellij-monorepo-bot
parent 7da501ece2
commit f896419d92
28 changed files with 595 additions and 282 deletions
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems/>
@@ -1,11 +0,0 @@
public class MyEasyMockTest {
@org.easymock.Mock
private String myFoo;
{
System.out.println(myFoo);
}
@org.junit.Test
public void testName() throws Exception {}
}
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems/>
@@ -1,11 +0,0 @@
public class MyMockitoTest {
@org.mockito.Mock
private String myFoo;
{
System.out.println(myFoo);
}
@org.junit.Test
public void testName() throws Exception {}
}