We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39d06bb commit 3a8cf14Copy full SHA for 3a8cf14
.gitignore
@@ -5,10 +5,7 @@ build/
5
!**/src/test/**/build/
6
7
### IntelliJ IDEA ###
8
-.idea/modules.xml
9
-.idea/jarRepositories.xml
10
-.idea/compiler.xml
11
-.idea/libraries/
+.idea
12
*.iws
13
*.iml
14
*.ipr
@@ -39,4 +36,4 @@ bin/
39
36
.vscode/
40
37
41
38
### Mac OS ###
42
-.DS_Store
+.DS_Store
build.gradle
@@ -11,9 +11,11 @@ repositories {
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
- testImplementation 'org.junit.jupiter:junit-jupiter'
+ testImplementation platform('org.assertj:assertj-bom:3.25.1')
15
+ testImplementation('org.junit.jupiter:junit-jupiter')
16
+ testImplementation('org.assertj:assertj-core')
17
}
18
19
test {
20
useJUnitPlatform()
-}
21
+}
0 commit comments