Package org.geoserver.wfs.web

Source Code of org.geoserver.wfs.web.WFSAdminPageTest

package org.geoserver.wfs.web;

import org.geoserver.wfs.WFSInfo;
import org.geoserver.web.GeoServerWicketTestSupport;

public class WFSAdminPageTest extends GeoServerWicketTestSupport {
    public void testValues() throws Exception {
        WFSInfo wfs = getGeoServerApplication().getGeoServer().getService(WFSInfo.class);

        login();
        tester.startPage(WFSAdminPage.class);
        tester.assertModelValue("form:maxFeatures", wfs.getMaxFeatures());
        tester.assertModelValue("form:keywords", wfs.getKeywords());
    }
}
TOP

Related Classes of org.geoserver.wfs.web.WFSAdminPageTest

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.