42434445464748
protected IndentPrinter out; protected AbstractApplyToAllContractTest( final String packagePrefix) { reflections = new Reflections(packagePrefix); out = new IndentPrinter(new PrintWriter(ByteStreams.nullOutputStream())); }
4647484950515253
reflections = new Reflections(packagePrefix); out = new IndentPrinter(new PrintWriter(ByteStreams.nullOutputStream())); } public AbstractApplyToAllContractTest withLoggingTo(Writer out) { this.out = new IndentPrinter(out); return this; }
5152535455565758
this.out = new IndentPrinter(out); return this; } public AbstractApplyToAllContractTest withLoggingTo(PrintStream out) { this.out = new IndentPrinter(new PrintWriter(out)); return this; }