mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
N001-Add new test equals #001
This commit is contained in:
parent
cba4408597
commit
bdb842c8cc
1 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,7 @@ package org.springframework.samples.petclinic;
|
|||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static junit.framework.TestCase.assertEquals;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
public class TestNoord {
|
||||
|
@ -14,4 +15,9 @@ public class TestNoord {
|
|||
public void simpleTestFalse() {
|
||||
assertThat(false).isFalse();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void simpleTestEquals() {
|
||||
assertEquals(2,2);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue