public string getContent() { ExceptionExtractor extractor = new ExceptionExtractor(this.method); string ret = string.Empty; if (extractor.validate()) { ret = string.Format("{0}\n{1}", this.content.getContent(), extractor.getTagValue()); } else { ret = this.content.getContent(); } return(ret);; }
public ExceptionExtractorTests() { _extractor = new ExceptionExtractor(); }