Package com.mycila.testing.plugins.jetty.locator

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

Related Classes of com.mycila.testing.plugins.jetty.locator.FixedPathFileLocator

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.