File tree Expand file tree Collapse file tree 3 files changed +51
-1
lines changed
src/test/java/org/baeldung/guava Expand file tree Collapse file tree 3 files changed +51
-1
lines changed Original file line number Diff line number Diff line change 1+ * .class
2+
3+ # folders#
4+ /target
5+ /neoDb *
6+ /data
7+ /src /main /webapp /WEB-INF /classes
8+ * /META-INF /*
9+
10+ # Packaged files #
11+ * .jar
12+ * .war
13+ * .ear
Original file line number Diff line number Diff line change 1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >com.baeldung</groupId >
5+ <artifactId >guava-collections-set</artifactId >
6+ <version >0.1.0-SNAPSHOT</version >
7+ <name >guava-collections-set</name >
8+
9+ <parent >
10+ <groupId >com.baeldung</groupId >
11+ <artifactId >parent-java</artifactId >
12+ <version >0.0.1-SNAPSHOT</version >
13+ <relativePath >../parent-java</relativePath >
14+ </parent >
15+
16+ <dependencies >
17+ <!-- test scoped -->
18+ <dependency >
19+ <groupId >org.assertj</groupId >
20+ <artifactId >assertj-core</artifactId >
21+ <version >${assertj.version} </version >
22+ <scope >test</scope >
23+ </dependency >
24+ </dependencies >
25+
26+ <build >
27+ <finalName >guava-collections-set</finalName >
28+ </build >
29+
30+ <properties >
31+ <!-- util -->
32+ <guava .version>27.1-jre</guava .version>
33+ <!-- testing -->
34+ <assertj .version>3.6.1</assertj .version>
35+ </properties >
36+
37+ </project >
Original file line number Diff line number Diff line change @@ -89,4 +89,4 @@ public void givenMap_compareMultiSetOperations() {
8989 bookStore .put ("Potter" , -1 );
9090 assertThat (bookStore .containsKey ("Potter" )).isTrue ();
9191 }
92- }
92+ }
You can’t perform that action at this time.
0 commit comments