/sitebricks/src/test/java/com/google/sitebricks/RespondersForTesting.java

http://github.com/dhanji/sitebricks · Java · 13 lines · 8 code · 2 blank · 3 comment · 0 complexity · ce984bd2905acc7919eee55916223a58 MD5 · raw file

  1. package com.google.sitebricks;
  2. /**
  3. * @author Dhanji R. Prasanna (dhanji@gmail com)
  4. */
  5. public class RespondersForTesting {
  6. private RespondersForTesting() {
  7. }
  8. public static Respond newRespond() {
  9. return new StringBuilderRespond(new Object());
  10. }
  11. }