Package org.apache.http.message

Examples of org.apache.http.message.BasicHttpVersion


    }

    // ------------------------------------------------------------------ Tests
   
    public void testHttpVersionParsing() throws Exception {
        new BasicHttpVersion(1, 1);
        String s = "HTTP/1.1";
        HttpVersion version = BasicHttpVersion.parse(s);
        assertEquals("HTTP major version number", 1, version.getMajor());
        assertEquals("HTTP minor version number", 1, version.getMinor());
        assertEquals("HTTP version number", s, version.toString());
View Full Code Here

TOP

Related Classes of org.apache.http.message.BasicHttpVersion

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.