mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 00:05:50 +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/
|
_site/
|
||||||
*.css
|
*.css
|
||||||
!petclinic.css
|
!petclinic.css
|
||||||
|
src/test/playwright/demo/SpringPetClinic.pem
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -175,7 +175,7 @@
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>io.spring.javaformat</groupId>
|
<groupId>io.spring.javaformat</groupId>
|
||||||
<artifactId>spring-javaformat-maven-plugin</artifactId>
|
<artifactId>spring-javaformat-maven-plugin</artifactId>
|
||||||
<version>${spring-format.version}</version>
|
<version>${spring-format.version}</version>
|
||||||
<executions>
|
<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