Package org.jaxen.dom

Examples of org.jaxen.dom.DocumentNavigator


  
    }
   
    public void testIsSerializable() throws JaxenException, IOException {
       
        BaseXPath path = new BaseXPath("//foo", new DocumentNavigator());
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(out);
        oos.writeObject(path);
        oos.close();
        assertTrue(out.toByteArray().length > 0);
View Full Code Here


        super( name );
    }
   
    public Navigator getNavigator()
    {
        return new DocumentNavigator();
    }
View Full Code Here

  
    }
   
    public void testIsSerializable() throws JaxenException, IOException {
       
        BaseXPath path = new BaseXPath("//foo", new DocumentNavigator());
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(out);
        oos.writeObject(path);
        oos.close();
        assertTrue(out.toByteArray().length > 0);
View Full Code Here

    public void testStringValueOfNull() {
        assertEquals("", StringFunction.evaluate(null, null));
    }
   
    public void testStringValueOfNullWithNonNullNavigator() {
        assertEquals("", StringFunction.evaluate(null, new DocumentNavigator()));
    }
View Full Code Here

TOP

Related Classes of org.jaxen.dom.DocumentNavigator

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.