File tree 3 files changed +7
-11
lines changed
src/test/java/com/kobylynskyi/graphql/codegen 3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ repositories {
15
15
}
16
16
17
17
dependencies {
18
- compile gradleApi()
19
-
20
18
compile " org.freemarker:freemarker:2.3.28"
21
19
compile " com.graphql-java:graphql-java:13.0"
22
20
@@ -25,6 +23,7 @@ dependencies {
25
23
26
24
testImplementation " org.junit.jupiter:junit-jupiter-api:5.5.1"
27
25
testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine:5.5.1"
26
+ testCompile ' org.hamcrest:java-hamcrest:2.0.0.0'
28
27
}
29
28
30
29
task sourcesJar (type : Jar ) {
Original file line number Diff line number Diff line change 2
2
3
3
import com .kobylynskyi .graphql .codegen .model .MappingConfig ;
4
4
import com .kobylynskyi .graphql .codegen .utils .Utils ;
5
- import org .gradle . internal . impldep . org . hamcrest .core .StringContains ;
5
+ import org .hamcrest .core .StringContains ;
6
6
import org .junit .jupiter .api .BeforeEach ;
7
7
import org .junit .jupiter .api .Test ;
8
8
13
13
import java .util .Collections ;
14
14
import java .util .Objects ;
15
15
16
- import static org .gradle . internal . impldep . org . hamcrest .MatcherAssert .assertThat ;
16
+ import static org .hamcrest .MatcherAssert .assertThat ;
17
17
import static org .junit .jupiter .api .Assertions .assertEquals ;
18
18
19
19
class GraphqlCodegenGitHubTest {
Original file line number Diff line number Diff line change 2
2
3
3
import com .kobylynskyi .graphql .codegen .model .MappingConfig ;
4
4
import com .kobylynskyi .graphql .codegen .utils .Utils ;
5
- import org .gradle . internal . impldep . org . hamcrest .core .StringContains ;
6
- import org .gradle . internal . impldep . org . hamcrest .core .StringStartsWith ;
5
+ import org .hamcrest .core .StringContains ;
6
+ import org .hamcrest .core .StringStartsWith ;
7
7
import org .junit .jupiter .api .AfterEach ;
8
8
import org .junit .jupiter .api .Assertions ;
9
9
import org .junit .jupiter .api .BeforeEach ;
13
13
import java .io .FileNotFoundException ;
14
14
import java .io .IOException ;
15
15
import java .nio .file .NoSuchFileException ;
16
- import java .util .Arrays ;
17
- import java .util .Collections ;
18
- import java .util .List ;
19
- import java .util .Objects ;
16
+ import java .util .*;
20
17
21
18
import static java .util .stream .Collectors .toList ;
22
- import static org .gradle . internal . impldep . org . hamcrest .MatcherAssert .assertThat ;
19
+ import static org .hamcrest .MatcherAssert .assertThat ;
23
20
import static org .junit .jupiter .api .Assertions .assertEquals ;
24
21
import static org .junit .jupiter .api .Assertions .fail ;
25
22
You can’t perform that action at this time.
0 commit comments