N001-Add new test equals #001

This commit is contained in:
bruno 2023-10-16 14:49:27 -04:00
parent cba4408597
commit bdb842c8cc

View file

@ -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);
}
}