mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
update test formatting
This commit is contained in:
parent
81991e3594
commit
12028a34e3
1 changed files with 7 additions and 12 deletions
|
@ -1,19 +1,14 @@
|
||||||
package org.springframework.samples.petclinic;
|
package org.springframework.samples.petclinic;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
import static org.junit.Assert.fail;
|
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.Assert.*;
|
|
||||||
|
|
||||||
public class FailingTest {
|
class VetTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void checkValues(){
|
void fail() {
|
||||||
assertThat(true).isEqualTo(false);
|
assertThat(true).isEqualTo(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue