Changes between Version 23 and Version 24 of test/spring-mvc-test

차이점 주위로
다음 차이점은 무시하기:
작성자:
anonymous (IP: 221.150.127.103)
날짜/시간:
2014-01-02 AM 11:22:41 (11 년 전)
설명:

--

Legend:

변경되지 않음
추가됨
제거됨
변경됨
  • test/spring-mvc-test

    v23 v24  
    4646     model() 
    4747        .andExpect(model().attribute("todos", hasSize(2))) 
     48        .andExpect(model().attribute("todos", hasItem( 
     49                        allOf( 
     50                                hasProperty("id", is(1L)), 
     51                                hasProperty("description", is("Lorem ipsum")), 
     52                                hasProperty("title", is("Foo")) 
     53                        ) 
     54                ))) 
    4855     flash() 
    4956