Make module testcase abstract to appease test naming convetion checks

This commit is contained in:
Ryan Ernst 2015-08-11 22:17:38 -07:00
parent 051cba3f4f
commit 41af2ca75f
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ import java.util.Set;
/**
* Base testcase for testing {@link Module} implementations.
*/
public class ModuleTestCase extends ESTestCase {
public abstract class ModuleTestCase extends ESTestCase {
/** Configures the module and asserts "clazz" is bound to "to". */
public void assertBinding(Module module, Class to, Class clazz) {