File tree Expand file tree Collapse file tree 7 files changed +26
-7
lines changed
src/test/java/com/salesforce/multicloudj/iam Expand file tree Collapse file tree 7 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 2828 <dependency >
2929 <groupId >org.projectlombok</groupId >
3030 <artifactId >lombok</artifactId >
31- <version >1.18.34</version >
32- <scope >provided</scope >
3331 </dependency >
3432
3533 <!-- Test dependencies -->
Original file line number Diff line number Diff line change 44
55import java .net .URI ;
66
7- import static org .junit .jupiter .api .Assertions .*;
7+ import static org .junit .jupiter .api .Assertions .assertNotNull ;
8+ import static org .junit .jupiter .api .Assertions .assertSame ;
9+ import static org .junit .jupiter .api .Assertions .assertThrows ;
810
911/**
1012 * Unit tests for IamClient builder pattern and basic functionality.
Original file line number Diff line number Diff line change 22
33import org .junit .jupiter .api .Test ;
44
5- import static org .junit .jupiter .api .Assertions .*;
5+ import static org .junit .jupiter .api .Assertions .assertEquals ;
6+ import static org .junit .jupiter .api .Assertions .assertNotEquals ;
7+ import static org .junit .jupiter .api .Assertions .assertNull ;
8+ import static org .junit .jupiter .api .Assertions .assertSame ;
9+ import static org .junit .jupiter .api .Assertions .assertTrue ;
610
711/**
812 * Unit tests for CreateOptions builder pattern and functionality.
Original file line number Diff line number Diff line change 55import java .util .Arrays ;
66import java .util .List ;
77
8- import static org .junit .jupiter .api .Assertions .*;
8+ import static org .junit .jupiter .api .Assertions .assertEquals ;
9+ import static org .junit .jupiter .api .Assertions .assertNotEquals ;
10+ import static org .junit .jupiter .api .Assertions .assertThrows ;
11+ import static org .junit .jupiter .api .Assertions .assertTrue ;
912
1013/**
1114 * Unit tests for PolicyDocument builder pattern.
Original file line number Diff line number Diff line change 66import java .util .List ;
77import java .util .Map ;
88
9- import static org .junit .jupiter .api .Assertions .*;
9+ import static org .junit .jupiter .api .Assertions .assertEquals ;
10+ import static org .junit .jupiter .api .Assertions .assertNotEquals ;
11+ import static org .junit .jupiter .api .Assertions .assertNull ;
12+ import static org .junit .jupiter .api .Assertions .assertThrows ;
13+ import static org .junit .jupiter .api .Assertions .assertTrue ;
1014
1115/**
1216 * Unit tests for Statement builder pattern and functionality.
Original file line number Diff line number Diff line change 66import java .util .List ;
77import java .util .Map ;
88
9- import static org .junit .jupiter .api .Assertions .*;
9+ import static org .junit .jupiter .api .Assertions .assertEquals ;
10+ import static org .junit .jupiter .api .Assertions .assertNotEquals ;
11+ import static org .junit .jupiter .api .Assertions .assertTrue ;
1012
1113/**
1214 * Unit tests for TrustConfiguration builder pattern and functionality.
Original file line number Diff line number Diff line change 166166 <version >${project.version} </version >
167167 <type >test-jar</type >
168168 </dependency >
169+ <dependency >
170+ <groupId >org.projectlombok</groupId >
171+ <artifactId >lombok</artifactId >
172+ <version >1.18.34</version >
173+ <scope >provided</scope >
174+ </dependency >
169175 </dependencies >
170176 </dependencyManagement >
171177 <build >
You can’t perform that action at this time.
0 commit comments