public Document(int offset, String session, KnowledgeTreeService kt, bool verbose, bool local) { this.title = "kt unit test" + offset; this.realFilename = "kt_unit_test" + offset + ".txt"; this.filename = (Helper.isUnix()?("/tmp/"):("c:\\")) + this.realFilename; this.content = "Hello World!\nThis is a test! And more!\n\n\r\n"; this.docId = 0; this.session = session; this.kt = kt; this.verbose = verbose; this.local = local; }
public Document(int offset, String session, KnowledgeTreeService kt, bool verbose, bool local) { this.title = "kt unit test" + offset; this.realFilename = "kt_unit_test" + offset + ".txt"; this.filename = (Helper.isUnix()?("/tmp/"):("c:\\")) + this.realFilename; this.content = "Hello World!\nThis is a test! And more!\n\n\r\n"; this.docId = 0; this.session = session; this.kt = kt; this.verbose =verbose; this.local = local; }
public void SetUp() { this._kt = new KTWebService(); }