comparison test/org/tmatesoft/hg/test/TestStorePath.java @ 389:82bec80bb1a4

Missing cons args
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 16 Feb 2012 01:09:24 +0100
parents 6d2c6b2469fc
children 464b4404e75d
comparison
equal deleted inserted replaced
388:b015f3918120 389:82bec80bb1a4
19 import junit.framework.Assert; 19 import junit.framework.Assert;
20 20
21 import org.hamcrest.CoreMatchers; 21 import org.hamcrest.CoreMatchers;
22 import org.junit.Rule; 22 import org.junit.Rule;
23 import org.junit.Test; 23 import org.junit.Test;
24 import org.tmatesoft.hg.internal.BasicSessionContext;
24 import org.tmatesoft.hg.internal.Internals; 25 import org.tmatesoft.hg.internal.Internals;
25 import org.tmatesoft.hg.util.PathRewrite; 26 import org.tmatesoft.hg.util.PathRewrite;
26 27
27 /** 28 /**
28 * 29 *
42 test.testHashLongPath(); 43 test.testHashLongPath();
43 test.errorCollector.verify(); 44 test.errorCollector.verify();
44 } 45 }
45 46
46 public TestStorePath() { 47 public TestStorePath() {
47 final Internals i = new Internals(); 48 final Internals i = new Internals(new BasicSessionContext(null, null));
48 i.setStorageConfig(1, 0x7); 49 i.setStorageConfig(1, 0x7);
49 storePathHelper = i.buildDataFilesHelper(); 50 storePathHelper = i.buildDataFilesHelper();
50 } 51 }
51 52
52 @Test 53 @Test