Repository: incubator-blur Updated Branches: refs/heads/master 12b609c97 -> 6ca03b650
add test impl for context Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/6ca03b65 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/6ca03b65 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/6ca03b65 Branch: refs/heads/master Commit: 6ca03b650126c961a6923116631a3731762fd515 Parents: 12b609c Author: twilliams <[email protected]> Authored: Tue Sep 23 20:14:54 2014 -0400 Committer: twilliams <[email protected]> Committed: Tue Sep 23 20:14:54 2014 -0400 ---------------------------------------------------------------------- .../blur/command/TestCombiningContext.java | 45 ++++++++++++++++++++ 1 file changed, 45 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/6ca03b65/blur-command/src/test/java/org/apache/blur/command/TestCombiningContext.java ---------------------------------------------------------------------- diff --git a/blur-command/src/test/java/org/apache/blur/command/TestCombiningContext.java b/blur-command/src/test/java/org/apache/blur/command/TestCombiningContext.java new file mode 100644 index 0000000..909bcc8 --- /dev/null +++ b/blur-command/src/test/java/org/apache/blur/command/TestCombiningContext.java @@ -0,0 +1,45 @@ +package org.apache.blur.command; + +import java.io.IOException; + +import org.apache.blur.BlurConfiguration; +import org.apache.blur.server.TableContext; + +/** + * 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. + */ +public class TestCombiningContext extends CombiningContext { + + + @Override + public Args getArgs() { + // TODO Auto-generated method stub + return null; + } + + @Override + public TableContext getTableContext(String table) throws IOException { + // TODO Auto-generated method stub + return null; + } + + @Override + public BlurConfiguration getBlurConfiguration(String table) throws IOException { + // TODO Auto-generated method stub + return null; + } + +}
