Changeset 24 for exampleparties/simpleboa
- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- exampleparties/simpleboa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
exampleparties/simpleboa/pom.xml
r23 r24 6 6 <groupId>geniusweb.exampleparties</groupId> 7 7 <artifactId>simpleboaparty</artifactId> 8 <version>1.5. 2</version> <!-- must equal ${geniusweb.version} -->8 <version>1.5.3</version> <!-- must equal ${geniusweb.version} --> 9 9 <packaging>jar</packaging> 10 10 … … 17 17 <passwd>${env.ARTIFACTORY_PASS}</passwd> 18 18 <jackson-2-version>2.9.6</jackson-2-version> 19 <geniusweb.version>1.5. 2</geniusweb.version>19 <geniusweb.version>1.5.3</geniusweb.version> 20 20 </properties> 21 21 … … 125 125 <groupId>org.apache.maven.plugins</groupId> 126 126 <artifactId>maven-javadoc-plugin</artifactId> 127 <version> 2.10.1</version>127 <version>3.2.0</version> 128 128 <executions> 129 129 <execution> … … 132 132 <goal>jar</goal> 133 133 </goals> 134 <configuration>135 <additionalparam>${javadoc.opts}</additionalparam>136 <additionalparam>-Xdoclint:none</additionalparam>137 </configuration>138 134 </execution> 139 135 </executions> -
exampleparties/simpleboa/src/test/java/geniusweb/exampleparties/simpleboa/SimpleBoaTest.java
r21 r24 37 37 import geniusweb.connection.ConnectionEnd; 38 38 import geniusweb.inform.ActionDone; 39 import geniusweb.inform.Agreements; 39 40 import geniusweb.inform.Finished; 40 41 import geniusweb.inform.Inform; … … 164 165 party.connect(connection); 165 166 party.notifyChange(settings); 166 party.notifyChange(new Finished(null)); 167 168 Agreements agreements = mock(Agreements.class); 169 when(agreements.toString()).thenReturn("agree"); 170 party.notifyChange(new Finished(agreements)); 167 171 168 172 verify(reporter).log(eq(Level.INFO), 169 eq("Final ourcome:Finished[ null]"));173 eq("Final ourcome:Finished[agree]")); 170 174 } 171 175
Note:
See TracChangeset
for help on using the changeset viewer.