Well this doesnt work at all

This commit is contained in:
Adam
2015-10-14 17:33:06 -04:00
parent 649bec406d
commit c2ee0cdf67
2 changed files with 62 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
package net.runelite.cache.fs;
import java.io.IOException;
import org.junit.Test;
public class StoreLoadTest
{
@Test
public void test() throws IOException
{
Store store = new Store(new java.io.File("c:/rs/cache"));
store.load();
}
}