private final Configuration config = mock(Configuration.class);
private ScriptCreatorAssemblerImpl assembler= new ScriptCreatorAssemblerImpl(config);
private File mockFile(String name, DirType dirType, Long dbVersion){
File result = mock(File.class);
when(result.getName()).thenReturn(name);
when(result.getDBVersion()).thenReturn(dbVersion);
return result;
}