Fixed most reported issues by SonarCloud.
This commit is contained in:
@ -25,13 +25,15 @@ package com.iluwatar.iterator;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
|
||||
|
||||
/**
|
||||
* Application Test
|
||||
*/
|
||||
class AppTest {
|
||||
|
||||
@Test
|
||||
void testApp() {
|
||||
App.main(new String[]{});
|
||||
void shouldExecuteApplicationWithoutException() {
|
||||
assertDoesNotThrow(() -> App.main(new String[]{}));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user