Shard all [] tests

This prevents error messages about not enough tests existing.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=132360344
This commit is contained in:
mcilwain 2016-09-06 14:10:09 -07:00 committed by Ben McIlwain
parent fea8c96f79
commit 27dfe358ce

View file

@ -34,6 +34,7 @@ import com.google.apphosting.api.ApiProxy;
import com.google.common.base.CharMatcher; import com.google.common.base.CharMatcher;
import google.registry.testing.AppEngineRule; import google.registry.testing.AppEngineRule;
import google.registry.testing.FakeClock; import google.registry.testing.FakeClock;
import google.registry.testing.ShardableTestCase;
import google.registry.util.FormattingLogger; import google.registry.util.FormattingLogger;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.ObjectInputStream; import java.io.ObjectInputStream;
@ -58,7 +59,7 @@ import org.junit.Rule;
* *
* @param <T> The type of the Action class that implements the mapreduce. * @param <T> The type of the Action class that implements the mapreduce.
*/ */
public abstract class MapreduceTestCase<T> { public abstract class MapreduceTestCase<T> extends ShardableTestCase {
private static final FormattingLogger logger = FormattingLogger.getLoggerForCallerClass(); private static final FormattingLogger logger = FormattingLogger.getLoggerForCallerClass();