]> git.basschouten.com Git - openhab-addons.git/blob
0ee067cee49a0c818051ae973d477f73370adc6c
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.transform.xpath.internal;
14
15 /**
16  * @author Thomas.Eichstaedt-Engelen
17  */
18 public abstract class AbstractTransformationServiceTest {
19
20     protected String source = """
21             <?xml version="1.0"?><xml_api_reply version="1"><weather module_id="0"\
22              tab_id="0" mobile_row="0" mobile_zipped="1" row="0" section="0" ><forecast_information>\
23             <city data="Krefeld, North Rhine-Westphalia"/><postal_code data="Krefeld Germany"/>\
24             <latitude_e6 data=""/><longitude_e6 data=""/><forecast_date data="2011-03-01"/>\
25             <current_date_time data="2011-03-01 15:20:00 +0000"/><unit_system data="SI"/></forecast_information>\
26             <current_conditions><condition data="Meistens bew�lkt"/><temp_f data="46"/><temp_c data="8"/>\
27             <humidity data="Feuchtigkeit: 66 %"/><icon data="/ig/images/weather/mostly_cloudy.gif"/>\
28             <wind_condition data="Wind: N mit 26 km/h"/></current_conditions><forecast_conditions><day_of_week data="Di."/>\
29             <low data="-1"/><high data="6"/><icon data="/ig/images/weather/sunny.gif"/><condition data="Klar"/>\
30             </forecast_conditions><forecast_conditions><day_of_week data="Mi."/><low data="-1"/><high data="8"/>\
31             <icon data="/ig/images/weather/sunny.gif"/><condition data="Klar"/></forecast_conditions><forecast_conditions>\
32             <day_of_week data="Do."/><low data="-1"/><high data="8"/><icon data="/ig/images/weather/sunny.gif"/>\
33             <condition data="Klar"/></forecast_conditions><forecast_conditions><day_of_week data="Fr."/><low data="0"/>\
34             <high data="8"/><icon data="/ig/images/weather/sunny.gif"/><condition data="Klar"/></forecast_conditions>\
35             </weather></xml_api_reply>\
36             """;
37 }