File tree Expand file tree Collapse file tree 7 files changed +4
-27
lines changed
src/test/com/intellij/lang/jsgraphql Expand file tree Collapse file tree 7 files changed +4
-27
lines changed Original file line number Diff line number Diff line change 17
17
import com .intellij .testFramework .fixtures .BasePlatformTestCase ;
18
18
import org .jetbrains .annotations .NotNull ;
19
19
import org .jetbrains .annotations .Nullable ;
20
- import org .junit .internal .runners .JUnit38ClassRunner ;
21
- import org .junit .runner .RunWith ;
22
20
23
21
import java .io .IOException ;
24
22
import java .util .List ;
25
23
26
- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
27
24
public abstract class GraphQLTestCaseBase extends BasePlatformTestCase {
28
25
29
26
protected static final List <Class <? extends LocalInspectionTool >> ourGeneralInspections = Lists .newArrayList (
Original file line number Diff line number Diff line change 8
8
package com .intellij .lang .jsgraphql .endpoint ;
9
9
10
10
import com .google .common .collect .Lists ;
11
- import com .intellij .application .options .CodeStyle ;
12
11
import com .intellij .codeInsight .completion .CompletionType ;
13
12
import com .intellij .lang .jsgraphql .ide .project .graphqlconfig .GraphQLConfigManager ;
14
13
import com .intellij .openapi .command .WriteCommandAction ;
15
14
import com .intellij .psi .codeStyle .CodeStyleManager ;
16
15
import com .intellij .testFramework .fixtures .BasePlatformTestCase ;
17
- import org .junit .internal .runners .JUnit38ClassRunner ;
18
- import org .junit .runner .RunWith ;
19
16
20
17
import java .util .List ;
21
18
22
- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
23
19
public class JSGraphQLEndpointCodeInsightTest extends BasePlatformTestCase {
24
20
25
21
@ Override
Original file line number Diff line number Diff line change 10
10
import com .intellij .lexer .FlexAdapter ;
11
11
import com .intellij .lexer .Lexer ;
12
12
import com .intellij .testFramework .LexerTestCase ;
13
- import org .junit .internal .runners .JUnit38ClassRunner ;
14
- import org .junit .runner .RunWith ;
15
13
16
- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
17
14
public class JSGraphQEndpointDocLexerTest extends LexerTestCase {
18
15
19
16
@ Override
Original file line number Diff line number Diff line change 7
7
*/
8
8
package com .intellij .lang .jsgraphql .endpoint .doc .parser ;
9
9
10
- import org .junit .Test ;
11
-
12
10
import com .intellij .lang .jsgraphql .endpoint .doc .JSGraphQLEndpointDocParserDefinition ;
13
11
import com .intellij .testFramework .ParsingTestCase ;
14
- import org .junit .internal .runners .JUnit38ClassRunner ;
15
- import org .junit .runner .RunWith ;
12
+ import org .junit .Test ;
16
13
17
- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
18
14
public class JSGraphQLEndpointDocParserTest extends ParsingTestCase {
19
15
20
16
public JSGraphQLEndpointDocParserTest () {
Original file line number Diff line number Diff line change 7
7
*/
8
8
package com .intellij .lang .jsgraphql .endpoint .lexer ;
9
9
10
- import java .io .IOException ;
11
- import java .nio .charset .Charset ;
12
-
13
10
import com .google .common .io .Resources ;
14
11
import com .intellij .lexer .FlexAdapter ;
15
12
import com .intellij .lexer .Lexer ;
16
13
import com .intellij .testFramework .LexerTestCase ;
17
- import org .junit .internal .runners .JUnit38ClassRunner ;
18
- import org .junit .runner .RunWith ;
19
14
20
- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
15
+ import java .io .IOException ;
16
+ import java .nio .charset .Charset ;
17
+
21
18
public class JSGraphQEndpointLexerTest extends LexerTestCase {
22
19
23
20
@ Override
Original file line number Diff line number Diff line change 10
10
import com .intellij .lang .jsgraphql .endpoint .JSGraphQLEndpointParserDefinition ;
11
11
import com .intellij .testFramework .ParsingTestCase ;
12
12
import org .junit .Test ;
13
- import org .junit .internal .runners .JUnit38ClassRunner ;
14
- import org .junit .runner .RunWith ;
15
13
16
- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
17
14
public class JSGraphQLEndpointParserTest extends ParsingTestCase {
18
15
19
16
public JSGraphQLEndpointParserTest () {
Original file line number Diff line number Diff line change 9
9
10
10
import com .intellij .lang .jsgraphql .GraphQLParserDefinition ;
11
11
import com .intellij .testFramework .ParsingTestCase ;
12
- import org .junit .internal .runners .JUnit38ClassRunner ;
13
- import org .junit .runner .RunWith ;
14
12
15
- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
16
13
public class GraphQLParserTest extends ParsingTestCase {
17
14
18
15
public GraphQLParserTest () {
You can’t perform that action at this time.
0 commit comments