Merge branch '#35-URL-filtering' of emeroad/pinpoint

from pull-request 72

* refs/heads/#35-URL-filtering:
  [#35] fix testcase fail
This commit is contained in:
Woonduk Kang
2014-10-15 13:58:38 +09:00
@@ -1,5 +1,6 @@
package com.nhn.pinpoint.profiler.context;
import com.nhn.pinpoint.bootstrap.config.ProfilerConfig;
import com.nhn.pinpoint.bootstrap.context.TraceContext;
/**
@@ -8,6 +9,8 @@ import com.nhn.pinpoint.bootstrap.context.TraceContext;
public class MockTraceContextFactory {
public TraceContext create() {
DefaultTraceContext traceContext = new DefaultTraceContext() ;
return traceContext;
ProfilerConfig profilerConfig = new ProfilerConfig();
traceContext.setProfilerConfig(profilerConfig);
return traceContext;
}
}