More unit tests.

This commit is contained in:
akwizgran
2011-06-22 16:58:03 +01:00
parent eb1c855278
commit dad1b4fcb9
11 changed files with 296 additions and 50 deletions

View File

@@ -7,6 +7,8 @@ import net.sf.briar.api.setup.SetupParameters;
class SetupParametersImpl implements SetupParameters {
private static final int EXE_HEADER_SIZE = 62976;
private final LocationPanel locationPanel;
private final FontManager fontManager;
@@ -22,4 +24,8 @@ class SetupParametersImpl implements SetupParameters {
public String[] getBundledFontFilenames() {
return fontManager.getBundledFontFilenames();
}
public long getExeHeaderSize() {
return EXE_HEADER_SIZE;
}
}