mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 07:45: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;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.Assert.*;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class FailingTest {
|
||||
class VetTests {
|
||||
|
||||
@Test
|
||||
public void checkValues(){
|
||||
assertThat(true).isEqualTo(false);
|
||||
}
|
||||
@Test
|
||||
void fail() {
|
||||
assertThat(true).isEqualTo(false);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in a new issue