Package org.sonatype.tests.http.server.jetty.behaviour

Examples of org.sonatype.tests.http.server.jetty.behaviour.Record


  private Server server;

  public RepositoryRequestAsExpiredTest() throws Exception {
    // just a dummy server doing 404 all the time
    // it is the request we are interested in
    this.record = new Record();
    this.server =
        Server.withPort(0).serve("/").withBehaviours(record, Behaviours.error(404, "don't bother yourself"));
    server.start();
  }
View Full Code Here


  @Before
  public void prepare()
      throws Exception
  {
    recordedRequestsBehaviour = new Record();
    // somewhere in near past
    lastModifiedSender =
        new LastModifiedSender(new Date(System.currentTimeMillis() - TimeUnit.DAYS.toMillis(3)));

    server =
View Full Code Here

TOP

Related Classes of org.sonatype.tests.http.server.jetty.behaviour.Record

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.