Changeset 24 for exampleparties/anac2019/winkyagent/src
- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- exampleparties/anac2019/winkyagent/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
exampleparties/anac2019/winkyagent/src/main/java/geniusweb/exampleparties/anac2019/winkyagent/SimpleLinearOrdering.java
r12 r24 29 29 /** 30 30 * 31 * @param domain 31 * @param domain the {@link Domain} 32 32 * @param bids a list of bids, ordered from lowest to highest util. The 33 33 * first bid will have utility 0, the last utility 1. If only … … 67 67 /** 68 68 * 69 * @param bid 69 * @param bid the {@link Bid} 70 70 * @return true iff bid is contained in this ordering 71 71 */ … … 84 84 /** 85 85 * 86 * @param profile 86 * @param profile the {@link Profile} 87 87 * @return a list of bids in the profile sorted from low to high utility. 88 88 */ -
exampleparties/anac2019/winkyagent/src/test/java/geniusweb/exampleparties/anac2019/winkyagent/WinkyAgentTest.java
r21 r24 35 35 import geniusweb.connection.ConnectionEnd; 36 36 import geniusweb.inform.ActionDone; 37 import geniusweb.inform.Agreements; 37 38 import geniusweb.inform.Finished; 38 39 import geniusweb.inform.Inform; … … 174 175 party.connect(connection); 175 176 party.notifyChange(settings); 176 party.notifyChange(new Finished(null)); 177 178 Agreements agreements = mock(Agreements.class); 179 when(agreements.toString()).thenReturn("agree"); 180 party.notifyChange(new Finished(agreements)); 177 181 178 182 verify(reporter).log(eq(Level.INFO), 179 eq("Final ourcome:Finished[ null]"));183 eq("Final ourcome:Finished[agree]")); 180 184 } 181 185
Note:
See TracChangeset
for help on using the changeset viewer.