mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
[pitboss] phase 14: Track B — Java harness emitter shapes
This commit is contained in:
parent
7628c48930
commit
bd1bd0ce84
36 changed files with 1793 additions and 155 deletions
|
|
@ -0,0 +1,6 @@
|
|||
// Phase 14 fixture stub — minimal servlet response shape.
|
||||
public class HttpServletResponse {
|
||||
private final StringBuilder body = new StringBuilder();
|
||||
public void write(String s) { body.append(s); }
|
||||
public String getBody() { return body.toString(); }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue