Testing now working

Still requires shenanigans in its own right, but this is a much better platform.
Plus, I don't need to mess with the application context, all I do is change the injections.
This commit is contained in:
DjBushido
2014-07-05 10:35:55 -04:00
parent b34f5e147a
commit 8b5e6ede51
11 changed files with 171 additions and 29 deletions

View File

@ -0,0 +1,14 @@
package org.bspeice.minimalbible;
/**
* List modules used by default MinimalBible configuration
*/
public class Modules {
private Modules() {}
public static Object[] list(MinimalBible app) {
return new Object[] {
new MinimalBibleModules(app)
};
}
}