mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-20 22:35:49 +00:00
Jenkins & SQ Test Commit
- removed failed test in case of jenkins job testing
This commit is contained in:
parent
3aafd4ecf8
commit
405b356667
1 changed files with 2 additions and 7 deletions
|
@ -3,17 +3,12 @@ package org.springframework.samples.petclinic;
|
|||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.test.web.servlet.MockMvc;
|
||||
|
||||
public class AlwaysFailTests {
|
||||
|
||||
@Autowired
|
||||
private MockMvc mockMvc;
|
||||
|
||||
@Test
|
||||
public void failTest() throws Exception{
|
||||
assertEquals(1, 2);
|
||||
public void failTest() throws Exception {
|
||||
assertEquals(2, 2);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue