Rename the org.bitcoinj.core.CheckpointManagerTest test package to lowercase.

This commit is contained in:
Andreas Schildbach
2018-02-28 10:02:31 +01:00
parent a8c9a33d6a
commit f25840309b
4 changed files with 4 additions and 4 deletions

View File

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