comparison test/org/tmatesoft/hg/test/TestStorePath.java @ 431:12f668401613

FIXMEs: awkward API refactored, what need to be internal got hidden; public aspects got captured in slim interfaces
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 29 Mar 2012 20:54:04 +0200
parents 63c5a9d7ca3f
children b3c16d1aede0
comparison
equal deleted inserted replaced
430:d280759c2a3f 431:12f668401613
52 test.errorCollector.verify(); 52 test.errorCollector.verify();
53 } 53 }
54 54
55 public TestStorePath() { 55 public TestStorePath() {
56 propertyOverrides.put("hg.consolelog.debug", true); 56 propertyOverrides.put("hg.consolelog.debug", true);
57 internals = new Internals(new BasicSessionContext(propertyOverrides, null, null)); 57 internals = new Internals(new BasicSessionContext(propertyOverrides, null));
58 internals.setStorageConfig(1, 0x7); 58 internals.setStorageConfig(1, 0x7);
59 storePathHelper = internals.buildDataFilesHelper(); 59 storePathHelper = internals.buildDataFilesHelper();
60 } 60 }
61 61
62 @Before 62 @Before