Add JUnit category for stateful ParDo tests
Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/f8b6bb7f Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/f8b6bb7f Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/f8b6bb7f Branch: refs/heads/gearpump-runner Commit: f8b6bb7f1ab8720ca4f2d766831d8f243dd27085 Parents: 70efa47 Author: Kenneth Knowles <[email protected]> Authored: Mon Nov 21 15:41:13 2016 -0800 Committer: Kenneth Knowles <[email protected]> Committed: Mon Nov 21 21:32:47 2016 -0800 ---------------------------------------------------------------------- .../beam/sdk/testing/UsesStatefulParDo.java | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/f8b6bb7f/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/UsesStatefulParDo.java ---------------------------------------------------------------------- diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/UsesStatefulParDo.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/UsesStatefulParDo.java new file mode 100644 index 0000000..8bd6330 --- /dev/null +++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/UsesStatefulParDo.java @@ -0,0 +1,25 @@ +/* + * 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.beam.sdk.testing; + +import org.apache.beam.sdk.transforms.ParDo; + +/** + * Category tag for validation tests which utilize stateful {@link ParDo}. + */ +public interface UsesStatefulParDo {}
