[pitboss] phase 14: Track B — Java harness emitter shapes

This commit is contained in:
pitboss 2026-05-14 16:54:56 -05:00
parent 7628c48930
commit bd1bd0ce84
36 changed files with 1793 additions and 155 deletions

View file

@ -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(); }
}