Skip to content

Commit 916fd91

Browse files
authored
Add Mockito and PITest to pom.xml (CMU-623#4)
* Add .vscode to gitignore * Added mockito and PITest to pom.xml
1 parent 04c44ca commit 916fd91

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ target
99
# Mac OS System
1010
.DS_Store*
1111
._*
12+
13+
.vscode

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,17 @@
2727
<artifactId>javafx-swing</artifactId>
2828
<version>20-ea+3</version>
2929
</dependency>
30+
<dependency>
31+
<groupId>org.mockito</groupId>
32+
<artifactId>mockito-core</artifactId>
33+
<version>3.12.4</version> <!-- Use the latest version available -->
34+
<scope>test</scope>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.pitest</groupId>
38+
<artifactId>pitest-maven</artifactId>
39+
<version>1.9.11</version>
40+
</dependency>
3041
</dependencies>
3142
<build>
3243
<plugins>

0 commit comments

Comments
 (0)