fix test compile

This commit is contained in:
zzz
2015-07-02 15:20:58 +00:00
parent 3645c906e8
commit 98a4460bde
2 changed files with 8 additions and 3 deletions

View File

@ -11,6 +11,7 @@ package net.i2p.client;
import junit.framework.Test;
import junit.framework.TestSuite;
import net.i2p.client.datagram.DatagramTest;
import net.i2p.client.impl.I2PSessionTest;
/**
* @author Comwiz
@ -26,4 +27,4 @@ public class I2PClientTestSuite {
return suite;
}
}
}

View File

@ -1,4 +1,4 @@
package net.i2p.client;
package net.i2p.client.impl;
/*
* free (adj.): unencumbered; not under the control of others
* Written by jrandom in 2003 and released into the public domain
@ -15,6 +15,10 @@ import java.util.Set;
import junit.framework.TestCase;
import net.i2p.I2PAppContext;
import net.i2p.client.I2PClientFactory;
import net.i2p.client.I2PSession;
import net.i2p.client.I2PSessionException;
import net.i2p.client.I2PSessionListener;
import net.i2p.data.Destination;
@ -87,4 +91,4 @@ public class I2PSessionTest extends TestCase implements I2PSessionListener{
}
}
public void reportAbuse(I2PSession session, int severity){}
}
}