mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 08:15: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/
|
_site/
|
||||||
*.css
|
*.css
|
||||||
!petclinic.css
|
!petclinic.css
|
||||||
|
src/test/playwright/demo/SpringPetClinic.pem
|
||||||
|
|
|
@ -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