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 d946c37550
commit 1dd258375e

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