Delete MainMenuUnitTest.java

Moving code to  a new module - core-java-exceptions-3
This commit is contained in:
Rutuja Joshi 2020-08-17 16:48:47 +05:30 committed by GitHub
parent eb4ce37f31
commit b6e9fa3848

View File

@ -1,14 +0,0 @@
package com.baeldung.exceptions.nosuchmethoderror;
import static org.junit.Assert.assertNotNull;
import org.junit.jupiter.api.Test;
class MainMenuUnitTest {
@Test
void whenGetSpecials_thenNotNull() {
assertNotNull(MainMenu.getSpecials());
}
}