Merge branch 'SonarCloud-Reports-Issue#1012'

# Conflicts:
#	pom.xml
This commit is contained in:
Toxic Dreamz
2020-08-19 23:27:43 +04:00
195 changed files with 1488 additions and 686 deletions

View File

@ -25,13 +25,15 @@ package com.iluwatar.visitor;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
/**
* Application test.
*/
public class AppTest {
class AppTest {
@Test
public void test() {
App.main(new String[]{});
void shouldExecuteWithoutException() {
assertDoesNotThrow(() -> App.main(new String[]{}));
}
}