Added New File(s) - BAEL-4193 NoSuchMethodError

This commit is contained in:
Rutuja Joshi 2020-08-05 15:16:51 +05:30 committed by GitHub
parent 5db4e332b9
commit 4c4cafde1e
1 changed files with 14 additions and 0 deletions

View File

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