Class StandardOutputTracker
java.lang.Object
java.io.OutputStream
java.io.ByteArrayOutputStream
org.evomaster.client.java.sql.internal.StandardOutputTracker
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
Deprecated.
We use p6spy to intercept SQL commands.
That can be done in 3 ways:
(1) to file,
(2) with a logger,
(3) to standard output.
(1) is a recipe for disaster: handling generated files, and file locks on Windows. (2) is a nightmare as well, as who knows what the SUT is configuring. (3) is likely the cleanest, easiest option. But it means we need to handle System.out
This class can be used for any analyses of the SUT output
-
Field Summary
Fields inherited from class java.io.ByteArrayOutputStream
buf, count -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.io.ByteArrayOutputStream
close, reset, size, toByteArray, toString, toString, toString, toString, write, write, writeBytes, writeToMethods inherited from class java.io.OutputStream
flush, nullOutputStream, write
-
Constructor Details
-
StandardOutputTracker
public StandardOutputTracker()Deprecated.
-