Skip to content
Prev Previous commit
Next Next commit
Formatting
  • Loading branch information
charlesfinley committed Mar 4, 2021
commit 12d148d15fafeba7e50b490fdd2c6003341f74fe
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
* empty test
*/
class SagaApplicationTest {

@Test
void shouldExecuteWithoutException() {
assertDoesNotThrow(() -> SagaApplication.main(new String[]{}));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;

class WorldTest {

Expand Down