mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:35:50 +00:00
Added test.
This commit is contained in:
parent
4148fc9eb3
commit
5d78f18bf7
1 changed files with 5 additions and 0 deletions
|
@ -49,6 +49,11 @@ public class PetClinicIntegrationTests {
|
||||||
vets.findAll(); // served from cache
|
vets.findAll(); // served from cache
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void contextLoads() {
|
||||||
|
assertEquals(2, 1);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testOwnerDetails() {
|
void testOwnerDetails() {
|
||||||
RestTemplate template = builder.rootUri("http://localhost:" + port).build();
|
RestTemplate template = builder.rootUri("http://localhost:" + port).build();
|
||||||
|
|
Loading…
Reference in a new issue