view src/test/java/de/intevation/lada/test/land/QueryTest.java @ 851:00eae82dea5f

Updated tests. * Use new query ids for probe and messprogramm * Test stammdaten query service.
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 27 Jan 2016 15:44:31 +0100
parents d0a591b3eade
children
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU GPL (v>=3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out
 * the documentation coming with IMIS-Labordaten-Application for details.
 */
package de.intevation.lada.test.land;

import java.net.URL;
import java.util.List;

import de.intevation.lada.Protocol;
import de.intevation.lada.test.ServiceTest;

public class QueryTest extends ServiceTest {

    /**
     * @return The test protocol
     */
    public List<Protocol> getProtocol() {
        return protocol;
    }

    @Override
    public void init(
        URL baseUrl,
        List<Protocol> protocol
    ) {
        super.init(baseUrl, protocol);
    }

    public final void execute() {
        getAll("query", "rest/query/probe");
        getAll("query", "rest/query/messprogramm");
        getAll("query", "rest/query/stammdaten");
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)