Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-02-25 04:35:51 +0000
committerGreg Wilkins2015-02-25 04:35:51 +0000
commit9b40f6e0dd8613b4af0595c48ee3ad907739c668 (patch)
tree7d2cee98f1822e989cd3d95f4d90ad3b6ee53fff
parent0ee278902d381eda054c3a029ccf762c8f9a115d (diff)
downloadorg.eclipse.jetty.project-9b40f6e0dd8613b4af0595c48ee3ad907739c668.tar.gz
org.eclipse.jetty.project-9b40f6e0dd8613b4af0595c48ee3ad907739c668.tar.xz
org.eclipse.jetty.project-9b40f6e0dd8613b4af0595c48ee3ad907739c668.zip
Added a HttpInput integration test
-rw-r--r--tests/test-integration/src/test/java/org/eclipse/jetty/test/HttpInputIntegrationTest.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/test-integration/src/test/java/org/eclipse/jetty/test/HttpInputIntegrationTest.java b/tests/test-integration/src/test/java/org/eclipse/jetty/test/HttpInputIntegrationTest.java
index 1b5c1e9743..a1df7993ad 100644
--- a/tests/test-integration/src/test/java/org/eclipse/jetty/test/HttpInputIntegrationTest.java
+++ b/tests/test-integration/src/test/java/org/eclipse/jetty/test/HttpInputIntegrationTest.java
@@ -1,3 +1,21 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
package org.eclipse.jetty.test;
import static org.hamcrest.Matchers.startsWith;

Back to the top