split place and name for some Frankfurt stations

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@463 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-01-27 19:51:58 +00:00
parent 0184b5dee3
commit b2ba8a1c79
3 changed files with 32 additions and 2 deletions

View file

@ -14,12 +14,14 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.schildbach.pte.live;
import org.junit.Test;
import de.schildbach.pte.RmvProvider;
import de.schildbach.pte.dto.NearbyStationsResult;
import de.schildbach.pte.dto.QueryDeparturesResult;
/**
* @author Andreas Schildbach
@ -35,4 +37,12 @@ public class RmvProviderLiveTest
System.out.println(result.stations.size() + " " + result.stations);
}
@Test
public void departures() throws Exception
{
final QueryDeparturesResult queryDepartures = provider.queryDepartures("3000001", 0);
System.out.println(queryDepartures.departures);
}
}