use of com.gitblit.tests.mock.MemorySettings in project gitblit by gitblit.
the class MarkdownUtilsTest method getSettings.
private MemorySettings getSettings() {
Map<String, Object> backingMap = new HashMap<String, Object>();
backingMap.put(Keys.web.canonicalUrl, "http://localhost");
backingMap.put(Keys.web.shortCommitIdLength, "7");
MemorySettings ms = new MemorySettings(backingMap);
return ms;
}
Aggregations