Skip to content
This repository has been archived by the owner on Jan 8, 2019. It is now read-only.

Move test classes to test scope #1

Merged
merged 1 commit into from
Mar 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import static org.junit.Assert.assertTrue;


public class TransactionRestrictionTest extends Neo4jTest {
public class BCTransactionRestrictionTest extends Neo4jTest {

@Test
public void testMinInputCountRestriction() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,14 @@

import org.apache.commons.io.FileUtils;
import org.bitcoinj.core.Block;
import org.bitcoinj.core.Context;
import org.bitcoinj.core.Transaction;
import org.bitcoinj.core.TransactionOutput;
import org.bitcoinj.params.MainNetParams;
import org.junit.Before;
import org.junit.Test;

import java.io.File;
import java.io.IOException;
import java.util.NoSuchElementException;

import static org.hamcrest.CoreMatchers.instanceOf;
import static org.junit.Assert.*;

public class TestUtils {

public static final int TEST_BLOCK_HEIGHT = 350010;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package de.maltemoeser.bcgraph.testing;

import de.maltemoeser.bcgraph.testing.BitcoinTest;
import de.maltemoeser.bcgraph.testing.TestUtils;
import org.bitcoinj.core.Block;
import org.bitcoinj.core.Transaction;
import org.junit.Test;
Expand Down