Examples of FixedPathFileLocator


Examples of com.mycila.testing.plugins.jetty.locator.FixedPathFileLocator

    public final void testLocate()
        throws Exception
    {
        final FileLocator locator = mock(FileLocator.class);

        new FixedPathFileLocator(locator, "file").locate("any");

        verify(locator).locate("file");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.