public HttpServerSocketDelegate(IHttpServerTransaction transaction, IHttpServerTransactionDelegate transactionDelegate) { this.transaction = transaction; this.transactionDelegate = transactionDelegate; transactionTransform = new ParserToTransactionTransform(transaction, transactionDelegate); parser = new HttpParser(new ParserDelegate(transactionTransform)); }
public void SetUp() { httpDel = new MockHttpServerTransactionDelegate(); del = new ParserToTransactionTransform(null, httpDel); }