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 4f7a9f9a61
commit 6194bea45a

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