diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/TestCoinfloorAdapters.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/CoinfloorAdaptersTest.java similarity index 99% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/TestCoinfloorAdapters.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/CoinfloorAdaptersTest.java index a732dd29fea..505152abcf6 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/TestCoinfloorAdapters.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/CoinfloorAdaptersTest.java @@ -23,7 +23,7 @@ * @author obsessiveOrange */ -public class TestCoinfloorAdapters { +public class CoinfloorAdaptersTest { private AccountInfo cachedAccountInfo; private Trades cachedTrades; diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/TestCoinfloorUtils.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/CoinfloorUtilsTest.java similarity index 98% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/TestCoinfloorUtils.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/CoinfloorUtilsTest.java index 13758cca225..68f637c3db6 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/TestCoinfloorUtils.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/CoinfloorUtilsTest.java @@ -13,7 +13,7 @@ /** * @author obsessiveOrange */ -public class TestCoinfloorUtils { +public class CoinfloorUtilsTest { @Test(expected = ExchangeException.class) public void verifyCheckSuccessInt() { diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/TestGetBalancesReturn.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/CoinfloorBalancesTest.java similarity index 93% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/TestGetBalancesReturn.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/CoinfloorBalancesTest.java index 513f8bddb33..f525923219d 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/TestGetBalancesReturn.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/CoinfloorBalancesTest.java @@ -15,13 +15,13 @@ /** * @author obsessiveOrange */ -public class TestGetBalancesReturn { +public class CoinfloorBalancesTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestGetBalancesReturn.class.getResourceAsStream("/account/example-balances-response.json"); + InputStream is = CoinfloorBalancesTest.class.getResourceAsStream("/account/example-balances-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/TestTradeVolumeReturn.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/CoinfloorTradeVolumeTest.java similarity index 85% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/TestTradeVolumeReturn.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/CoinfloorTradeVolumeTest.java index e2b1edf9a8a..6baeb20ee09 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/TestTradeVolumeReturn.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/account/CoinfloorTradeVolumeTest.java @@ -14,13 +14,13 @@ /** * @author obsessiveOrange */ -public class TestTradeVolumeReturn { +public class CoinfloorTradeVolumeTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestTradeVolumeReturn.class.getResourceAsStream("/account/example-tradeVolume-response.json"); + InputStream is = CoinfloorTradeVolumeTest.class.getResourceAsStream("/account/example-tradeVolume-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/TestOrderbookReturn.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/CoinfloorOrderbookTest.java similarity index 88% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/TestOrderbookReturn.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/CoinfloorOrderbookTest.java index 3b7b9b0908f..87377505b99 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/TestOrderbookReturn.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/CoinfloorOrderbookTest.java @@ -14,13 +14,13 @@ /** * @author obsessiveOrange */ -public class TestOrderbookReturn { +public class CoinfloorOrderbookTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestOrderbookReturn.class.getResourceAsStream("/marketdata/example-orders-response.json"); + InputStream is = CoinfloorOrderbookTest.class.getResourceAsStream("/marketdata/example-orders-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/TestTicker.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/CoinfloorTickerTest.java similarity index 88% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/TestTicker.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/CoinfloorTickerTest.java index 99be1d7d5c5..19c31a48b01 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/TestTicker.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/marketdata/CoinfloorTickerTest.java @@ -14,13 +14,13 @@ /** * @author obsessiveOrange */ -public class TestTicker { +public class CoinfloorTickerTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestTicker.class.getResourceAsStream("/marketdata/example-ticker-response.json"); + InputStream is = CoinfloorTickerTest.class.getResourceAsStream("/marketdata/example-ticker-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); @@ -40,7 +40,7 @@ public void testMapping() throws JsonParseException, JsonMappingException, IOExc public void testMapping2() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestTicker.class.getResourceAsStream("/marketdata/example-ticker-update.json"); + InputStream is = CoinfloorTickerTest.class.getResourceAsStream("/marketdata/example-ticker-update.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestCancelOrderReturn.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorCancelOrderTest.java similarity index 88% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestCancelOrderReturn.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorCancelOrderTest.java index 6538c018190..1bec760a484 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestCancelOrderReturn.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorCancelOrderTest.java @@ -15,13 +15,13 @@ /** * @author obsessiveOrange */ -public class TestCancelOrderReturn { +public class CoinfloorCancelOrderTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestCancelOrderReturn.class.getResourceAsStream("/trade/example-cancelOrder-response.json"); + InputStream is = CoinfloorCancelOrderTest.class.getResourceAsStream("/trade/example-cancelOrder-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestEstimateMarketorder.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorEstimateMarketOrderTest.java similarity index 85% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestEstimateMarketorder.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorEstimateMarketOrderTest.java index 3f54b6ac558..1788603902a 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestEstimateMarketorder.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorEstimateMarketOrderTest.java @@ -14,13 +14,13 @@ /** * @author obsessiveOrange */ -public class TestEstimateMarketorder { +public class CoinfloorEstimateMarketOrderTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestEstimateMarketorder.class.getResourceAsStream("/trade/example-estimateMarketOrder-response.json"); + InputStream is = CoinfloorEstimateMarketOrderTest.class.getResourceAsStream("/trade/example-estimateMarketOrder-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestOpenOrders.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorOpenOrdersTest.java similarity index 90% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestOpenOrders.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorOpenOrdersTest.java index fa0d8101b7a..89df8d2484a 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestOpenOrders.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorOpenOrdersTest.java @@ -15,13 +15,13 @@ /** * @author obsessiveOrange */ -public class TestOpenOrders { +public class CoinfloorOpenOrdersTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestOpenOrders.class.getResourceAsStream("/trade/example-openOrders-response.json"); + InputStream is = CoinfloorOpenOrdersTest.class.getResourceAsStream("/trade/example-openOrders-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestPlaceOrder.java b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorPlaceOrderTest.java similarity index 85% rename from xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestPlaceOrder.java rename to xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorPlaceOrderTest.java index 5442a04caa7..937b8c9e896 100644 --- a/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/TestPlaceOrder.java +++ b/xchange-coinfloor/src/test/java/com/xeiam/xchange/coinfloor/dto/streaming/trade/CoinfloorPlaceOrderTest.java @@ -13,13 +13,13 @@ /** * @author obsessiveOrange */ -public class TestPlaceOrder { +public class CoinfloorPlaceOrderTest { @Test public void testMapping() throws JsonParseException, JsonMappingException, IOException { // Read in the JSON from the example resources - InputStream is = TestPlaceOrder.class.getResourceAsStream("/trade/example-placeOrder-response.json"); + InputStream is = CoinfloorPlaceOrderTest.class.getResourceAsStream("/trade/example-placeOrder-response.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper(); diff --git a/xchange-openexchangerates/src/test/java/com/xeiam/xchange/oer/dto/marketdata/TestOERTickers.java b/xchange-openexchangerates/src/test/java/com/xeiam/xchange/oer/dto/marketdata/OERTickersTest.java similarity index 91% rename from xchange-openexchangerates/src/test/java/com/xeiam/xchange/oer/dto/marketdata/TestOERTickers.java rename to xchange-openexchangerates/src/test/java/com/xeiam/xchange/oer/dto/marketdata/OERTickersTest.java index 81829e1d1e7..2ed460e4267 100644 --- a/xchange-openexchangerates/src/test/java/com/xeiam/xchange/oer/dto/marketdata/TestOERTickers.java +++ b/xchange-openexchangerates/src/test/java/com/xeiam/xchange/oer/dto/marketdata/OERTickersTest.java @@ -13,13 +13,13 @@ /** * @author timmolter */ -public class TestOERTickers { +public class OERTickersTest { @Test public void testUnmarshal() throws IOException { // Read in the JSON from the example resources - InputStream is = TestOERTickers.class.getResourceAsStream("/example-latest-rates.json"); + InputStream is = OERTickersTest.class.getResourceAsStream("/example-latest-rates.json"); // Use Jackson to parse it ObjectMapper mapper = new ObjectMapper();