|
assertThat(sniper.getSnapshot(), samePropertyValuesAs(SniperSnapshot.joining(ITEM_ID))); |
samePropertyValuesAs only works with Java Bean objects (private fields with getters and setters), since SniperSnapshot is not, I think this test will always pass.
goos-code/test/unit/test/auctionsniper/AuctionSniperTest.java
Line 47 in 5dff693
samePropertyValuesAs only works with Java Bean objects (private fields with getters and setters), since SniperSnapshot is not, I think this test will always pass.