Hendrik Jungnitsch
2022-08-29 d84ecaf652504d4cc62b49f7a240a4c2c2a61270
src/test/java/de/gedoplan/seminar/jpa/exercise/Exercise03Test.java
@@ -25,4 +25,10 @@
      mockMvc.perform(get("/highways/findByOrigin/{origin}", "Dortmund"))
      .andExpect(jsonPath("$.size()",is(2)));
   }
   @Test
   void test02_countOrigins() throws Exception {
      mockMvc.perform(get("/highways/countOrigins"))
      .andExpect(jsonPath("$",is(2)));
   }
}