mlm plugin: move idle notification from idle notifier to mlm plugin

This commit is contained in:
Twiglet1022
2019-06-08 23:48:47 +01:00
parent 3b0f1d2a63
commit 72a7e05eac
4 changed files with 42 additions and 12 deletions

View File

@@ -39,6 +39,9 @@ import net.runelite.api.Varbits;
import net.runelite.api.events.GameStateChanged;
import net.runelite.api.events.ItemContainerChanged;
import net.runelite.api.events.VarbitChanged;
import net.runelite.client.Notifier;
import net.runelite.client.config.ChatColorConfig;
import net.runelite.client.config.RuneLiteConfig;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -87,6 +90,18 @@ public class MotherlodePluginTest
@Bind
private ScheduledExecutorService scheduledExecutorService;
@Mock
@Bind
private ChatColorConfig chatColorConfig;
@Mock
@Bind
private RuneLiteConfig runeliteConfig;
@Mock
@Bind
private Notifier notifier;
@Before
public void before()
{