hiscore panel: autocomplete recent search history

Co-authored-by: Daniel <serpa88@hotmail.ca>
This commit is contained in:
Adam
2020-03-16 19:52:15 -04:00
committed by Adam
parent 24e291fd46
commit c1d5e3ae16
4 changed files with 54 additions and 35 deletions

View File

@@ -27,15 +27,14 @@ package net.runelite.client.plugins.hiscore;
import static net.runelite.client.plugins.hiscore.HiscorePanel.formatLevel;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import static org.mockito.Mockito.mock;
public class HiscorePanelTest
{
@Test
public void testConstructor()
{
new HiscorePanel(new HiscoreConfig()
{
});
new HiscorePanel(mock(HiscoreConfig.class), mock(NameAutocompleter.class));
}
@Test