mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
add failing test
This commit is contained in:
parent
d932479bef
commit
81991e3594
3 changed files with 21 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,3 +15,4 @@ build/*
|
|||
_site/
|
||||
*.css
|
||||
!petclinic.css
|
||||
src/test/playwright/demo/SpringPetClinic.pem
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -175,7 +175,7 @@
|
|||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>io.spring.javaformat</groupId>
|
||||
<groupId>io.spring.javaformat</groupId>
|
||||
<artifactId>spring-javaformat-maven-plugin</artifactId>
|
||||
<version>${spring-format.version}</version>
|
||||
<executions>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
package org.springframework.samples.petclinic;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.Assert.*;
|
||||
|
||||
public class FailingTest {
|
||||
|
||||
@Test
|
||||
public void checkValues(){
|
||||
assertThat(true).isEqualTo(false);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue