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 1717import com .intellij .testFramework .fixtures .BasePlatformTestCase ;
1818import org .jetbrains .annotations .NotNull ;
1919import org .jetbrains .annotations .Nullable ;
20- import org .junit .internal .runners .JUnit38ClassRunner ;
21- import org .junit .runner .RunWith ;
2220
2321import java .io .IOException ;
2422import java .util .List ;
2523
26- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
2724public abstract class GraphQLTestCaseBase extends BasePlatformTestCase {
2825
2926 protected static final List <Class <? extends LocalInspectionTool >> ourGeneralInspections = Lists .newArrayList (
Original file line number Diff line number Diff line change 88package com .intellij .lang .jsgraphql .endpoint ;
99
1010import com .google .common .collect .Lists ;
11- import com .intellij .application .options .CodeStyle ;
1211import com .intellij .codeInsight .completion .CompletionType ;
1312import com .intellij .lang .jsgraphql .ide .project .graphqlconfig .GraphQLConfigManager ;
1413import com .intellij .openapi .command .WriteCommandAction ;
1514import com .intellij .psi .codeStyle .CodeStyleManager ;
1615import com .intellij .testFramework .fixtures .BasePlatformTestCase ;
17- import org .junit .internal .runners .JUnit38ClassRunner ;
18- import org .junit .runner .RunWith ;
1916
2017import java .util .List ;
2118
22- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
2319public class JSGraphQLEndpointCodeInsightTest extends BasePlatformTestCase {
2420
2521 @ Override
Original file line number Diff line number Diff line change 1010import com .intellij .lexer .FlexAdapter ;
1111import com .intellij .lexer .Lexer ;
1212import com .intellij .testFramework .LexerTestCase ;
13- import org .junit .internal .runners .JUnit38ClassRunner ;
14- import org .junit .runner .RunWith ;
1513
16- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
1714public class JSGraphQEndpointDocLexerTest extends LexerTestCase {
1815
1916 @ Override
Original file line number Diff line number Diff line change 77 */
88package com .intellij .lang .jsgraphql .endpoint .doc .parser ;
99
10- import org .junit .Test ;
11-
1210import com .intellij .lang .jsgraphql .endpoint .doc .JSGraphQLEndpointDocParserDefinition ;
1311import com .intellij .testFramework .ParsingTestCase ;
14- import org .junit .internal .runners .JUnit38ClassRunner ;
15- import org .junit .runner .RunWith ;
12+ import org .junit .Test ;
1613
17- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
1814public class JSGraphQLEndpointDocParserTest extends ParsingTestCase {
1915
2016 public JSGraphQLEndpointDocParserTest () {
Original file line number Diff line number Diff line change 77 */
88package com .intellij .lang .jsgraphql .endpoint .lexer ;
99
10- import java .io .IOException ;
11- import java .nio .charset .Charset ;
12-
1310import com .google .common .io .Resources ;
1411import com .intellij .lexer .FlexAdapter ;
1512import com .intellij .lexer .Lexer ;
1613import com .intellij .testFramework .LexerTestCase ;
17- import org .junit .internal .runners .JUnit38ClassRunner ;
18- import org .junit .runner .RunWith ;
1914
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+
2118public class JSGraphQEndpointLexerTest extends LexerTestCase {
2219
2320 @ Override
Original file line number Diff line number Diff line change 1010import com .intellij .lang .jsgraphql .endpoint .JSGraphQLEndpointParserDefinition ;
1111import com .intellij .testFramework .ParsingTestCase ;
1212import org .junit .Test ;
13- import org .junit .internal .runners .JUnit38ClassRunner ;
14- import org .junit .runner .RunWith ;
1513
16- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
1714public class JSGraphQLEndpointParserTest extends ParsingTestCase {
1815
1916 public JSGraphQLEndpointParserTest () {
Original file line number Diff line number Diff line change 99
1010import com .intellij .lang .jsgraphql .GraphQLParserDefinition ;
1111import com .intellij .testFramework .ParsingTestCase ;
12- import org .junit .internal .runners .JUnit38ClassRunner ;
13- import org .junit .runner .RunWith ;
1412
15- @ RunWith (JUnit38ClassRunner .class ) // TODO: drop the annotation when issue with Gradle test scanning go away
1613public class GraphQLParserTest extends ParsingTestCase {
1714
1815 public GraphQLParserTest () {
You can’t perform that action at this time.
0 commit comments