1 Star 0 Fork 2

yuqiaowang / flink-training

forked from Gavind / flink-training 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
RideCleansingTest.java 2.57 KB
一键复制 编辑 原始数据 按行查看 历史
Gavind 提交于 2020-07-21 15:55 . init
///*
// * Licensed to the Apache Software Foundation (ASF) under one
// * or more contributor license agreements. See the NOTICE file
// * distributed with this work for additional information
// * regarding copyright ownership. The ASF licenses this file
// * to you under the Apache License, Version 2.0 (the
// * "License"); you may not use this file except in compliance
// * with the License. You may obtain a copy of the License at
// *
// * http://www.apache.org/licenses/LICENSE-2.0
// *
// * Unless required by applicable law or agreed to in writing, software
// * distributed under the License is distributed on an "AS IS" BASIS,
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// * See the License for the specific language governing permissions and
// * limitations under the License.
// */
//
//package org.apache.flink.training.exercises.ridecleansing;
//
//import org.apache.flink.training.exercises.common.datatypes.TaxiRide;
//import org.apache.flink.training.exercises.testing.TaxiRideTestBase;
//import org.apache.flink.training.solutions.ridecleansing.RideCleansingSolution;
//
//import org.joda.time.DateTime;
//import org.junit.Test;
//
//import java.util.Collections;
//import java.util.List;
//
//import static org.junit.Assert.assertEquals;
//
//public class RideCleansingTest extends TaxiRideTestBase<TaxiRide> {
//
// static final Testable JAVA_EXERCISE = () -> RideCleansingExercise.main(new String[]{});
//
// @Test
// public void testInNYC() throws Exception {
// TaxiRide atPennStation = testRide(-73.9947F, 40.750626F, -73.9947F, 40.750626F);
//
// TestRideSource source = new TestRideSource(atPennStation);
//
// assertEquals(Collections.singletonList(atPennStation), results(source));
// }
//
// @Test
// public void testNotInNYC() throws Exception {
// TaxiRide toThePole = testRide(-73.9947F, 40.750626F, 0, 90);
// TaxiRide fromThePole = testRide(0, 90, -73.9947F, 40.750626F);
// TaxiRide atNorthPole = testRide(0, 90, 0, 90);
//
// TestRideSource source = new TestRideSource(toThePole, fromThePole, atNorthPole);
//
// assertEquals(Collections.emptyList(), results(source));
// }
//
// private TaxiRide testRide(float startLon, float startLat, float endLon, float endLat) {
// return new TaxiRide(1L, true, new DateTime(0), new DateTime(0),
// startLon, startLat, endLon, endLat, (short) 1, 0, 0);
// }
//
// protected List<?> results(TestRideSource source) throws Exception {
// Testable javaSolution = () -> RideCleansingSolution.main(new String[]{});
// return runApp(source, new TestSink<>(), JAVA_EXERCISE, javaSolution);
// }
//
//}
Java
1
https://gitee.com/yuqiaowang/flink-training.git
git@gitee.com:yuqiaowang/flink-training.git
yuqiaowang
flink-training
flink-training
release-1.10

搜索帮助