Reduce the number of cards tested in import/export tests

There is no need to have so many cards tested in the test, just
a few will do to prove the point.
This commit is contained in:
Branden Archer
2016-07-15 17:53:18 -04:00
parent 5965b82251
commit a32415b4d2

View File

@@ -109,7 +109,7 @@ public class ImportExportTest
@Test
public void multipleCardsExportImport() throws IOException
{
final int NUM_CARDS = 1000;
final int NUM_CARDS = 10;
for(DataFormat format : DataFormat.values())
{
@@ -144,7 +144,7 @@ public class ImportExportTest
@Test
public void importExistingCardsNotReplace() throws IOException
{
final int NUM_CARDS = 1000;
final int NUM_CARDS = 10;
for(DataFormat format : DataFormat.values())
{
@@ -177,7 +177,7 @@ public class ImportExportTest
@Test
public void corruptedImportNothingSaved() throws IOException
{
final int NUM_CARDS = 1000;
final int NUM_CARDS = 10;
for(DataFormat format : DataFormat.values())
{