Skip to content

Commit 3a8cf14

Browse files
committed
first commit
1 parent 39d06bb commit 3a8cf14

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Diff for: .gitignore

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ build/
55
!**/src/test/**/build/
66

77
### IntelliJ IDEA ###
8-
.idea/modules.xml
9-
.idea/jarRepositories.xml
10-
.idea/compiler.xml
11-
.idea/libraries/
8+
.idea
129
*.iws
1310
*.iml
1411
*.ipr
@@ -39,4 +36,4 @@ bin/
3936
.vscode/
4037

4138
### Mac OS ###
42-
.DS_Store
39+
.DS_Store

Diff for: build.gradle

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ repositories {
1111

1212
dependencies {
1313
testImplementation platform('org.junit:junit-bom:5.9.1')
14-
testImplementation 'org.junit.jupiter:junit-jupiter'
14+
testImplementation platform('org.assertj:assertj-bom:3.25.1')
15+
testImplementation('org.junit.jupiter:junit-jupiter')
16+
testImplementation('org.assertj:assertj-core')
1517
}
1618

1719
test {
1820
useJUnitPlatform()
19-
}
21+
}

0 commit comments

Comments
 (0)