mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 07:15:49 +00:00
Failed test
This commit is contained in:
parent
a641ca741a
commit
92b520fdf3
1 changed files with 7 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
package org.springframework.samples.petclinic;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
@ -49,6 +50,12 @@ public class PetClinicIntegrationTests {
|
|||
vets.findAll(); // served from cache
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
void testDemo(){
|
||||
assertEquals(1, 2);
|
||||
}
|
||||
|
||||
@Test
|
||||
void testOwnerDetails() {
|
||||
RestTemplate template = builder.rootUri("http://localhost:" + port).build();
|
||||
|
|
Loading…
Reference in a new issue