3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 02:35:52 +00:00

CheckpointManagerTest: Fix name of test data directory.

This commit is contained in:
Andreas Schildbach 2018-01-02 16:45:39 +01:00
parent 3f2a8f11c5
commit b6360e0858
4 changed files with 4 additions and 4 deletions

View File

@ -34,28 +34,28 @@ public class CheckpointManagerTest {
@Test(expected = NullPointerException.class) @Test(expected = NullPointerException.class)
public void shouldThrowNullPointerExceptionWhenCheckpointsNotFound() throws IOException { public void shouldThrowNullPointerExceptionWhenCheckpointsNotFound() throws IOException {
expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointsManagerTest/notFound"); expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointManagerTest/notFound");
replay(params); replay(params);
new CheckpointManager(params, null); new CheckpointManager(params, null);
} }
@Test(expected = IOException.class) @Test(expected = IOException.class)
public void shouldThrowNullPointerExceptionWhenCheckpointsInUnknownFormat() throws IOException { public void shouldThrowNullPointerExceptionWhenCheckpointsInUnknownFormat() throws IOException {
expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointsManagerTest/unsupportedFormat"); expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointManagerTest/unsupportedFormat");
replay(params); replay(params);
new CheckpointManager(params, null); new CheckpointManager(params, null);
} }
@Test(expected = IllegalStateException.class) @Test(expected = IllegalStateException.class)
public void shouldThrowIllegalStateExceptionWithNoCheckpoints() throws IOException { public void shouldThrowIllegalStateExceptionWithNoCheckpoints() throws IOException {
expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointsManagerTest/noCheckpoints"); expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointManagerTest/noCheckpoints");
replay(params); replay(params);
new CheckpointManager(params, null); new CheckpointManager(params, null);
} }
@Test @Test
public void canReadTextualStream() throws IOException { public void canReadTextualStream() throws IOException {
expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointsManagerTest/validTextualFormat"); expect(params.getId()).andReturn("org/bitcoinj/core/CheckpointManagerTest/validTextualFormat");
expect(params.getSerializer(false)).andReturn( expect(params.getSerializer(false)).andReturn(
new BitcoinSerializer(params, false)); new BitcoinSerializer(params, false));
expect(params.getProtocolVersionNum(NetworkParameters.ProtocolVersion.CURRENT)) expect(params.getProtocolVersionNum(NetworkParameters.ProtocolVersion.CURRENT))