集合在一個測試類使用AssertJ,我也有類似的代碼如下: public void someTest() {
assertThat(getNames()).has(sameNamesAs(getExpectedNames()));
assertThat(getNames()).doesNotHave(sameNamesAs(getOtherNames()));
}
pri
我必須處理沒有測試的遺留應用程序。所以在我開始重構之前,我想確保一切都按照原樣進行。 現在想象一下以下情況: public SomeObject doSomething(final OtherObject x, final String something) {
if(x == null) throw new RuntimeException("x may not be null!");
我想用日期編寫針對搜索的測試。我喜歡 assertThat(repository.findByBookingDateAfter(LocalDate.of(2016, 1, 1))).extracting("bookingDate").are(...));
其中類結構是類似以下內容思考的測試代碼的東西: public class Booking{
...
LocalDate