示例#1
0
 public void Setup()
 {
     sb   = new StringWriter();
     map  = new Dictionary <Address, Procedure>();
     hcf  = new HtmlCodeFormatter(sb, map);
     arch = new Mock <IProcessorArchitecture>();
 }
示例#2
0
 public void Setup()
 {
     sb   = new StringWriter();
     map  = new Dictionary <Address, Procedure>();
     hcf  = new HtmlCodeFormatter(sb, map);
     arch = MockRepository.GenerateStub <IProcessorArchitecture>();
     arch.Replay();
 }
示例#3
0
 public void Setup()
 {
     sb  = new StringWriter();
     map = new Dictionary <Address, Procedure>();
     hcf = new HtmlCodeFormatter(sb, map);
 }
 public void Setup()
 {
     sb = new StringWriter();
     map = new Dictionary<Address,Procedure>();
     hcf = new HtmlCodeFormatter(sb, map);
 }